badar_madeena/db/migrate/20250930062821_create_insti...

11 lines
199 B
Ruby

class CreateInstitutions < ActiveRecord::Migration[8.0]
def change
create_table :institutions do |t|
t.string :name
t.string :institution_type
t.timestamps
end
end
end