sqm-dashboards/db/migrate/20250624180041_create_educations.rb

9 lines
169 B
Ruby

class CreateEducations < ActiveRecord::Migration[8.0]
def change
create_table :educations do |t|
t.string :designation
t.timestamps
end
end
end