class CreateStudents < ActiveRecord::Migration[8.0] def change create_table :students do |t| t.string :first_name t.string :last_name t.string :email t.references :institution, null: false, foreign_key: true t.timestamps end end end