DVGM/db/migrate/20170331105119_create_lectu...

11 lines
206 B
Ruby

class CreateLectures < ActiveRecord::Migration[5.0]
def change
create_table :lectures do |t|
t.string :name
t.references :lecturer, foreign_key: true
t.timestamps
end
end
end