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