Exclude boston results. Completes #182117456

This commit is contained in:
Nelson Jovel 2022-05-11 11:22:05 -07:00
parent 4634282572
commit 57bfaa51c6
10 changed files with 65 additions and 5 deletions

View file

@ -0,0 +1,5 @@
class AddForeignKeyBetweenSchoolsAndDistricts < ActiveRecord::Migration[7.0]
def change
add_foreign_key :schools, :districts
end
end

View file

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema[7.0].define(version: 2022_05_03_180142) do
ActiveRecord::Schema[7.0].define(version: 2022_05_10_232626) do
# These are extensions that must be enabled in order to support this database
enable_extension "pg_stat_statements"
enable_extension "plpgsql"
@ -381,6 +381,7 @@ ActiveRecord::Schema[7.0].define(version: 2022_05_03_180142) do
add_foreign_key "respondents", "academic_years"
add_foreign_key "respondents", "schools"
add_foreign_key "scales", "measures"
add_foreign_key "schools", "districts"
add_foreign_key "subcategories", "categories"
add_foreign_key "survey_item_responses", "academic_years"
add_foreign_key "survey_item_responses", "schools"