1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/db/migrate/20150428091057_create_settings.rb
2016-03-23 18:39:41 +01:00

13 lines
244 B
Ruby

class CreateSettings < ActiveRecord::Migration
def change
create_table :settings do |t|
t.string :name, null: false
t.text :value
t.timestamps null: false
end
add_index :settings, :name, unique: true
end
end