socialforge/db/migrate/20151113025751_user_exercis...

16 lines
282 B
Ruby
Raw Normal View History

2015-11-13 11:43:44 +08:00
class UserExercise < ActiveRecord::Migration
def up
create_table :exercise_user do |t|
2015-11-13 11:43:44 +08:00
t.integer :user_id
t.integer :exercise_id
t.integer :score
t.datetime :start_at
2015-11-13 11:43:44 +08:00
t.timestamps
end
end
def down
drop_table :exercise_user
2015-11-13 11:43:44 +08:00
end
end