docbrown/db/migrate/20171104014225_create_flipflop_features.rb
2018-02-28 16:11:08 -05:00

9 lines
252 B
Ruby

class CreateFlipflopFeatures < ActiveRecord::Migration[5.1]
def change
create_table :flipflop_features do |t|
t.string :key, null: false
t.boolean :enabled, null: false, default: false
t.timestamps null: false
end
end
end