Use the standard sqlite3 engine from Django 5.1

This commit is contained in:
tcely 2025-02-24 10:42:30 -05:00 committed by GitHub
parent 91523edc21
commit c9f4a5dc17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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",