Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/commit/479f11fae62834b341e3d78a2fc82bd6c54440af You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed table deletion issue with PostgreSQL.

pull/2216/head v1.2.5-beta.6
morpheus65535 1 year ago
parent 98a0b65d97
commit 479f11fae6

@ -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…
Cancel
Save