Skip to content

Commit 408095b

Browse files
committed
opps
1 parent bd4ad1b commit 408095b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/tasks/db.rake

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,11 @@ namespace :db do
6767

6868
task :check => :connect do
6969
puts "legacy => ported"
70-
puts "Likes: #{Legacy[:likes]} => #{Like.count}"
71-
puts "Comments: #{Legacy[:comments]} => #{Comment.count}"
72-
puts "Protips: #{Legacy[:protips]} => #{Protip.count}"
73-
puts "Badges: #{Legacy[:badges]} => #{Badge.count}"
74-
puts "Users: #{Legacy[:users]} => #{User.count}"
70+
puts "Likes: #{Legacy[:likes].count} => #{Like.count}"
71+
puts "Comments: #{Legacy[:comments].count} => #{Comment.count}"
72+
puts "Protips: #{Legacy[:protips].count} => #{Protip.count}"
73+
puts "Badges: #{Legacy[:badges].count} => #{Badge.count}"
74+
puts "Users: #{Legacy[:users].count} => #{User.count}"
7575
end
7676

7777
task :connect => :environment do

0 commit comments

Comments
 (0)