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.
trustieforge/db/migrate/20151113025524_exercise_cho...

15 lines
284 B

class ExerciseChoices < ActiveRecord::Migration
def up
create_table :exercise_choices do |t|
t.integer :exercise_question_id
t.text :choice_text
t.integer :choice_position
t.timestamps
end
end
def down
drop_table :exercise_choices
end
end