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