From c9f4a5dc1757b6ce4ecd5323a1a0b495953dc7fc Mon Sep 17 00:00:00 2001 From: tcely Date: Mon, 24 Feb 2025 10:42:30 -0500 Subject: [PATCH] Use the standard `sqlite3` engine from Django 5.1 --- tubesync/tubesync/local_settings.py.container | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tubesync/tubesync/local_settings.py.container b/tubesync/tubesync/local_settings.py.container index 3659b289..659fb074 100644 --- a/tubesync/tubesync/local_settings.py.container +++ b/tubesync/tubesync/local_settings.py.container @@ -44,7 +44,7 @@ if database_dict: else: DATABASES = { 'default': { - 'ENGINE': 'tubesync.sqlite3', + 'ENGINE': 'django.db.backends.sqlite3', 'NAME': CONFIG_BASE_DIR / 'db.sqlite3', "OPTIONS": { "transaction_mode": "IMMEDIATE",