2017-08-31 00:06:56 -04:00
|
|
|
class CreateUserFields < ActiveRecord::Migration[4.2]
|
2014-09-25 11:32:08 -04:00
|
|
|
def change
|
|
|
|
create_table :user_fields do |t|
|
|
|
|
t.string :name, null: false
|
|
|
|
t.string :field_type, null: false
|
2017-08-07 11:48:36 -04:00
|
|
|
t.timestamps null: false
|
2014-09-25 11:32:08 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|