mirror of
https://github.com/ansible/awx.git
synced 2026-03-07 19:51:08 -03:30
Use upload artifact v4 (#6807)
unique-ify name psh, who needs loops Folder management Extracts into current path Co-authored-by: Alan Rominger <arominge@redhat.com>
This commit is contained in:
@@ -17,8 +17,8 @@ tables_to_drop = [
|
||||
'djkombu_message',
|
||||
'djkombu_queue',
|
||||
]
|
||||
postgres_sql = ([("DROP TABLE IF EXISTS {} CASCADE;".format(table))] for table in tables_to_drop)
|
||||
sqlite_sql = ([("DROP TABLE IF EXISTS {};".format(table))] for table in tables_to_drop)
|
||||
postgres_sql = (["DROP TABLE IF EXISTS {} CASCADE;".format(table)] for table in tables_to_drop)
|
||||
sqlite_sql = (["DROP TABLE IF EXISTS {};".format(table)] for table in tables_to_drop)
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
Reference in New Issue
Block a user