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

Changed what $core was

parent 233dbf39
No related branches found
No related tags found
No related merge requests found
......@@ -220,10 +220,9 @@ sub _backup {
}
$self->v( 'Backing up to %s', $table );
$core->dbc()->do( sprintf( 'create table %s like meta', $table ) );
$core->do( sprintf( 'create table %s like meta', $table ) );
$self->v( 'Copying data from meta to %s', $table );
$core->dbc()
->do( sprintf( 'insert into %s select * from meta', $table ) );
$core->do( sprintf( 'insert into %s select * from meta', $table ) );
$self->v('Done backup');
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