Skip to content
Snippets Groups Projects
Commit 49debb1f authored by Andy Yates's avatar Andy Yates
Browse files

Bad DDL

parent f9db388a
No related branches found
No related tags found
No related merge requests found
...@@ -221,7 +221,7 @@ sub _backup { ...@@ -221,7 +221,7 @@ sub _backup {
$core->dbc()->do( sprintf( 'create table %s like meta', $table ) ); $core->dbc()->do( sprintf( 'create table %s like meta', $table ) );
$self->v( 'Copying data from meta to %s', $table ); $self->v( 'Copying data from meta to %s', $table );
$core->dbc() $core->dbc()
->do( sprintf( 'insert into table %s select * from meta', $table ) ); ->do( sprintf( 'insert into %s select * from meta', $table ) );
$self->v('Done backup'); $self->v('Done backup');
return; return;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment