Compare commits

..

1 Commits

Author SHA1 Message Date
Frédéric Péters 6f7603f7f2 sql: update wcs_all_forms category column on category change (#87800)
gitea/wcs/pipeline/head This commit looks good Details
2024-03-05 18:47:40 +01:00
1 changed files with 1 additions and 1 deletions

View File

@ -2401,7 +2401,7 @@ def test_migration_59_all_forms_table(pub):
formdata.store()
conn, cur = sql.get_connection_and_cursor()
cur.execute('DROP TABLE wcs_all_forms')
cur.execute('DROP TABLE wcs_all_forms CASCADE')
cur.execute(
'DROP TRIGGER %s ON %s' % (sql.get_formdef_trigger_name(formdef), sql.get_formdef_table_name(formdef))
)