From f6731d5734c9c79a3f18c560e4bcc37b0b0811fc Mon Sep 17 00:00:00 2001 From: profitroll Date: Thu, 30 May 2024 12:51:47 +0200 Subject: [PATCH] Fixed downgrade for strings.url_updater config key --- migrations/202405261500.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migrations/202405261500.py b/migrations/202405261500.py index 82521e2..b63e1d9 100644 --- a/migrations/202405261500.py +++ b/migrations/202405261500.py @@ -13,4 +13,4 @@ class Migration(BaseMigration): def downgrade(self): sync.config_delete("update_checker", missing_ok=True) - sync.config_delete("url_updater", "strings") + sync.config_delete("url_updater", "strings", missing_ok=True)