* missing rails version 4.2 added to pre 5 migrations * updated carrierwave.rb and sitemap.rb with AWS_DEFAULT_REGION
9 lines
229 B
Ruby
9 lines
229 B
Ruby
class CreateFeatures < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :features do |t|
|
|
t.string :key, null: false
|
|
t.boolean :enabled, null: false, default: false
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|