# HG changeset patch # User Yann Voté # Date 1493280999 -7200 # Node ID c46f2bf815d2be2f10fe855dc05b9fe7fa233eb8 # Parent cd940ebefc4ec41326c5f44d643bb961f85612ac [migration] Only drop moved table entities if it does not exists For very old instances (namely docaster), this table has never been created. diff -r cd940ebefc4e -r c46f2bf815d2 cubicweb/misc/migration/3.24.0_Any.py --- a/cubicweb/misc/migration/3.24.0_Any.py Fri May 05 17:57:10 2017 +0200 +++ b/cubicweb/misc/migration/3.24.0_Any.py Thu Apr 27 10:16:39 2017 +0200 @@ -8,7 +8,7 @@ sql('UPDATE cw_{} SET cw_cwuri=%(cwuri)s WHERE cw_eid=%(eid)s'.format(etype), {'eid': eid, 'cwuri': b64decode(encoded_extid)}) -sql('DROP TABLE moved_entities') +sql('DROP TABLE IF EXISTS moved_entities') sql('ALTER TABLE entities DROP COLUMN asource') sql('ALTER TABLE entities DROP COLUMN extid') sql('DROP INDEX entities_type_idx')