parent
234cdbeab9
commit
fbcf9b77f5
@ -1,12 +1,5 @@
|
|||||||
class AddPraisesCountForChallenges < ActiveRecord::Migration[5.2]
|
class AddPraisesCountForChallenges < ActiveRecord::Migration[5.2]
|
||||||
def change
|
def change
|
||||||
add_column :challenges, :praises_count, :integer, :default => 0
|
#add_column :challenges, :praises_count, :integer, :default => 0
|
||||||
|
|
||||||
challenges = Challenge.where(nil)
|
|
||||||
challenges.each do |c|
|
|
||||||
praises_count = c.praise_tread.where(praise_or_tread: 1).count
|
|
||||||
c.update_column(:praises_count, praises_count)
|
|
||||||
end
|
|
||||||
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
class ModifyPraisesCountForChallenges < ActiveRecord::Migration[5.2]
|
||||||
|
def change
|
||||||
|
challenges = Challenge.where(nil)
|
||||||
|
challenges.each do |c|
|
||||||
|
praises_count = c.praise_tread.where(praise_or_tread: 1).count
|
||||||
|
c.update_column(:praises_count, praises_count)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in new issue