Steps

This README contains the steps that I executed in order to get the models generated in this way.

  1. rails generate model Student
  2. Update the migration to include the fields I want
  3. rake db:migrate
  4. rails generate model Teacher
  5. Update the migration to include the fields I want
  6. rake db:migrate
  7. rails generate model Course
  8. rails generate model Assignment
  9. rails generate model Mark