16 lines
308 B
Ruby
16 lines
308 B
Ruby
|
class AddCourseActivities < ActiveRecord::Migration
|
||
|
def up
|
||
|
create_table :course_activities do |t|
|
||
|
t.integer :user_id
|
||
|
t.integer :course_id
|
||
|
t.integer :course_act_id
|
||
|
t.string :course_act_type
|
||
|
t.timestamps
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
drop_table :course_activities
|
||
|
end
|
||
|
end
|