mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-04-23 22:27:17 -04:00
Fixed table deletion issue with PostgreSQL.
This commit is contained in:
parent
98a0b65d97
commit
479f11fae6
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue