Shifting print before operation
Signed-off-by: Chris Cormack <crc@liblime.com>
This commit is contained in:
parent
b2d476aa5c
commit
65080b46d1
1 changed files with 1 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue