socialforge/db/migrate/20151113025751_user_exercis...

15 lines
255 B
Ruby
Raw Normal View History

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