socialforge/db/migrate/20150811065543_add_course_a...

16 lines
308 B
Ruby
Raw Normal View History

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