mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-08 00:23:01 +08:00
13 lines
360 B
Ruby
13 lines
360 B
Ruby
|
class RefreshAssignedSamplesCounters < ActiveRecord::Migration
|
||
|
def up
|
||
|
# Reset the counters for assigned samples
|
||
|
Sample.find_each do |sample|
|
||
|
sample.update(nr_of_modules_assigned_to: sample.my_modules.count)
|
||
|
end
|
||
|
|
||
|
MyModule.find_each do |my_module|
|
||
|
my_module.update(nr_of_assigned_samples: my_module.samples.count)
|
||
|
end
|
||
|
end
|
||
|
end
|