diff --git a/update_db.py b/update_db.py index a4e1b01ec..2ac69dd92 100644 --- a/update_db.py +++ b/update_db.py @@ -10,11 +10,13 @@ if os.path.exists(os.path.join(os.path.dirname(__file__), 'data/db/bazarr.db')) # Execute table modification try: c.execute('alter table table_settings_providers add column "username" "text"') + c.execute('UPDATE table_settings_providers SET username=""') except: pass try: c.execute('alter table table_settings_providers add column "password" "text"') + c.execute('UPDATE table_settings_providers SET password=""') except: pass