From cf1205c17c863a99db81704a301ea44958422fad Mon Sep 17 00:00:00 2001 From: John Hawthorn Date: Mon, 26 Jun 2017 13:51:29 -0700 Subject: [PATCH] Remove print statements from migrations --- .../migrations/copy_order_bill_address_to_credit_card.rake | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/lib/tasks/migrations/copy_order_bill_address_to_credit_card.rake b/core/lib/tasks/migrations/copy_order_bill_address_to_credit_card.rake index 0f2c823a555..7c91e81b981 100644 --- a/core/lib/tasks/migrations/copy_order_bill_address_to_credit_card.rake +++ b/core/lib/tasks/migrations/copy_order_bill_address_to_credit_card.rake @@ -11,8 +11,6 @@ namespace 'spree:migrations:copy_order_bill_address_to_credit_card' do # This task should be safe to run multiple times. task up: :environment do - puts "Copying order bill addresses to credit cards" - if Spree::CreditCard.connection.adapter_name =~ /postgres/i postgres_copy else @@ -52,8 +50,6 @@ namespace 'spree:migrations:copy_order_bill_address_to_credit_card' do def postgres_copy batch_size = 10_000 - puts "last id: #{last_credit_card_id}" - current_start_id = 1 while current_start_id <= last_credit_card_id