mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
13 lines
278 B
Ruby
13 lines
278 B
Ruby
class CreateSchoolForNewDashboard < ActiveRecord::Migration[6.1]
|
|
def change
|
|
create_table :schools do |t|
|
|
t.string :name
|
|
t.integer :district_id
|
|
t.text :description
|
|
t.string :slug
|
|
t.integer :qualtrics_code
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|