Fix removing the FilePile from config files. Remove debug code from InnoDB translation script.

This commit is contained in:
Colin Kuskie 2011-12-06 13:08:28 -08:00
parent 7791024b0a
commit 745b5d1aef
2 changed files with 1 additions and 2 deletions

View file

@ -5,7 +5,7 @@ use Cwd qw(realpath);
start_step "Removing FilePile asset from config file";
session->config->delete( 'assets/FilePile' );
session->config->deleteFromHash( 'assets', 'WebGUI::Asset::FilePile' );
done;

View file

@ -8,7 +8,6 @@ my $get_table = session->db->table_info('', '', '%', 'TABLE');
TABLE: while ( my $table = $get_table->fetchrow_hashref() ) {
next TABLE if $table->{TABLE_NAME} eq 'assetIndex';
session->db->write("ALTER TABLE ". dbh->quote_identifier($table->{TABLE_NAME}). " ENGINE=InnoDB");
session->log->warn($table->{TABLE_NAME});
}