You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
308 B
14 lines
308 B
class CreateRegistrationFormFields < ActiveRecord::Migration
|
|
def change
|
|
create_table :registration_form_fields do |t|
|
|
t.string :title
|
|
t.text :help
|
|
t.boolean :required
|
|
t.string :field_type
|
|
t.string :options
|
|
t.boolean :is_retired
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|
|
|