mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 13:38:18 -08:00
9 lines
171 B
Ruby
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
|