mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-12 17:00:34 -07: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
|