badar_madeena/db/migrate/20250930063917_create_stude...

13 lines
276 B
Ruby

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