Commit e4d05c63 authored by erleibiazzio's avatar erleibiazzio
Browse files

Faz com que o db-update de deleção de metadados duplicados rode novamente

parent 12a25a72
......@@ -29,7 +29,7 @@ return [
file_put_contents(BASE_PATH."files/delete_duplecated_registrations_ms_cuturacidada_01_log-dbupdate.txt", implode("\n",$result));
},
'DROP Metadados duplicados' => function () use ($conn) {
'DROP Metadados duplicados - 2' => function () use ($conn, $app) {
$conn->executeQuery("DELETE FROM agent_meta m1
USING (
SELECT MAX(id) as id, key, object_id
......@@ -40,6 +40,7 @@ return [
m1.key = m2.key AND
m1.object_id = m2.object_id AND
m1.id <> m2.id;");
$app->log->debug("Limpaza de metados em agentes feita");
$conn->executeQuery("DELETE FROM registration_meta m1
......@@ -52,5 +53,6 @@ return [
m1.key = m2.key AND
m1.object_id = m2.object_id AND
m1.id <> m2.id;");
$app->log->debug("Limpaza de metados em inscrições feita");
}
];
Markdown is supported
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