2015-07-28 12:29:40 -04:00
|
|
|
class CreateUserFieldOptions < ActiveRecord::Migration
|
|
|
|
def change
|
2015-07-28 17:35:33 -04:00
|
|
|
create_table :user_field_options, force: true do |t|
|
2015-07-28 12:29:40 -04:00
|
|
|
t.references :user_field, null: false
|
|
|
|
t.string :value, null: false
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|