mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-08 23:18:18 -07:00
12 lines
328 B
Ruby
12 lines
328 B
Ruby
class CreateRespondents < ActiveRecord::Migration[7.0]
|
|
def change
|
|
create_table :respondents do |t|
|
|
t.references :school, null: false, foreign_key: true
|
|
t.references :academic_year, null: false, foreign_key: true
|
|
t.float :total_students
|
|
t.float :total_teachers
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|