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/20151113025751_user_exercis...

16 lines
283 B

class UserExercise < ActiveRecord::Migration
def up
create_table :exercise_users do |t|
t.integer :user_id
t.integer :exercise_id
t.integer :score
t.datetime :start_at
t.timestamps
end
end
def down
drop_table :exercise_user
end
end