DVGM/db/migrate/20170401153520_create_grade...

13 lines
274 B
Ruby
Raw Normal View History

2017-10-22 18:56:44 +00:00
class CreateGrades < ActiveRecord::Migration[5.0]
def change
create_table :grades do |t|
t.references :lecture, foreign_key: true
t.references :student, foreign_key: true
t.numeric :grade
t.string :comment
t.timestamps
end
end
end