sqm-dashboards/db/migrate/20250624180025_create_employments.rb

9 lines
171 B
Ruby

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