Add qualtrics_code to District and School

This commit is contained in:
Alex Basson 2021-09-20 16:15:32 -04:00
parent 12415861c1
commit 8fc6fae16b
7 changed files with 239 additions and 11 deletions

View file

@ -0,0 +1,5 @@
class AddQualtricsCodeToDistricts < ActiveRecord::Migration[5.0]
def change
add_column :districts, :qualtrics_code, :integer
end
end

View file

@ -0,0 +1,5 @@
class AddQualtricsCodeToSchools < ActiveRecord::Migration[5.0]
def change
add_column :schools, :qualtrics_code, :integer
end
end