20180321081841_create_assignments.rb 261 B

123456789101112
  1. class CreateAssignments < ActiveRecord::Migration[5.1]
  2. def change
  3. create_table :assignments do |t|
  4. t.belongs_to :course, foreign_key: true
  5. t.datetime :due_at
  6. t.string :name
  7. t.text :description
  8. t.timestamps
  9. end
  10. end
  11. end