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/20151208025236_create_stude...

14 lines
305 B

class CreateStudentWorkProjects < ActiveRecord::Migration
def change
create_table :student_work_projects do |t|
t.integer :homework_common_id
t.integer :student_work_id
t.integer :project_id
t.integer :user_id
t.integer :is_leader
t.timestamps
end
end
end