BikeBikeBike/db/migrate/20140303010316_create_registration_form_fields.rb
2014-03-09 14:43:33 -06:00

15 lines
308 B
Ruby

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