feat: add esp counts when calculating teacher participation rates on overview page

This commit is contained in:
Nelson Jovel 2025-01-15 13:39:41 -08:00 committed by rebuilt
parent 2f4d0bb56b
commit 534f42dfe0
11 changed files with 131 additions and 2 deletions

View file

@ -0,0 +1,5 @@
class AddTotalEspToRespondents < ActiveRecord::Migration[8.0]
def change
add_column :respondents, :total_esp, :integer
end
end