adding response_total to SchoolQuestion

This commit is contained in:
Jared Cosulich 2018-12-21 13:21:37 -05:00
parent 341c561a67
commit a82deaafd8
3 changed files with 15 additions and 7 deletions

View file

@ -0,0 +1,5 @@
class AddResponseTotalToSchoolQuestions < ActiveRecord::Migration[5.0]
def change
add_column :school_questions, :response_total, :integer
end
end