Fixed table deletion issue with PostgreSQL.

This commit is contained in:
morpheus65535 2023-07-29 07:56:32 -04:00
parent 98a0b65d97
commit 479f11fae6
1 changed files with 3 additions and 3 deletions

View File

@ -34,12 +34,12 @@ def upgrade():
if column_exists('table_movies', 'rowid'):
batch_op.drop_column(column_name='rowid')
if 'table_custom_score_profiles' in tables:
op.drop_table('table_custom_score_profiles')
if 'table_custom_score_profile_conditions' in tables:
op.drop_table('table_custom_score_profile_conditions')
if 'table_custom_score_profiles' in tables:
op.drop_table('table_custom_score_profiles')
def downgrade():
pass