Sha256: 24fd2de1ffc2b03e44aa1fbc97d36b40f81a85c7955872815558bab420a03c97
Contents?: true
Size: 409 Bytes
Versions: 16
Compression:
Stored size: 409 Bytes
Contents
# This migration comes from almanac (originally 20121112205256) class AddBackgroundFieldsToBlogs < ActiveRecord::Migration def up change_table :almanac_blogs do |t| t.boolean :background_tile, :default => false t.integer :background_blur, :default => 0 end end def down remove_column :almanac_blogs, :background_tile remove_column :almanac_blogs, :background_blur end end
Version data entries
16 entries across 16 versions & 1 rubygems