mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
9 lines
226 B
Ruby
9 lines
226 B
Ruby
class ResetAllSurveyItemCacheCounters < ActiveRecord::Migration[7.0]
|
|
def up
|
|
SurveyItem.all.each do |survey_item|
|
|
SurveyItem.reset_counters(survey_item.id, :survey_item_responses)
|
|
end
|
|
end
|
|
|
|
def down; end
|
|
end
|