更改db数据库目录

适应docker挂载
This commit is contained in:
Cp0204 2023-12-12 14:42:49 +08:00
parent 3fba6dee00
commit 82d731a83d
2 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ WSGI_APPLICATION = 'rustdesk_server_api.wsgi.application'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
'NAME': BASE_DIR / 'db/db.sqlite3',
}
}