From 65080b46d11c3076a2eb3dd8a32eea0bc18c24d8 Mon Sep 17 00:00:00 2001 From: Chris Cormack Date: Mon, 10 Sep 2007 18:15:06 -0500 Subject: [PATCH] Shifting print before operation Signed-off-by: Chris Cormack --- updater/updatedatabase | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updater/updatedatabase b/updater/updatedatabase index e67e37ac95..fa351e5210 100755 --- a/updater/updatedatabase +++ b/updater/updatedatabase @@ -1640,8 +1640,8 @@ if (C4::Context->preference("Version") < TransformToNum($DBversion) ) { next if $table->{Name} eq 'auth_word'; next if $table->{Name} eq 'auth_subfield_table'; if ($table->{Engine} ne 'InnoDB') { - $dbh->do("ALTER TABLE $table->{Name} TYPE = innodb"); print "moving $table->{Name} to InnoDB\n"; + $dbh->do("ALTER TABLE $table->{Name} TYPE = innodb"); } unless ($table->{Collation} =~ /^utf8/) { print "moving $table->{Name} to utf8\n"; -- 2.39.2