mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-13 12:55:19 +00:00
fix: db
This commit is contained in:
parent
068dff6aff
commit
d51e866505
1 changed files with 7 additions and 0 deletions
|
|
@ -80,6 +80,13 @@ handle_peewee_migration()
|
|||
|
||||
|
||||
SQLALCHEMY_DATABASE_URL = DATABASE_URL
|
||||
|
||||
# Replace the postgres:// with postgresql://
|
||||
if "postgres://" in SQLALCHEMY_DATABASE_URL:
|
||||
SQLALCHEMY_DATABASE_URL = SQLALCHEMY_DATABASE_URL.replace(
|
||||
"postgres://", "postgresql://"
|
||||
)
|
||||
|
||||
if "sqlite" in SQLALCHEMY_DATABASE_URL:
|
||||
engine = create_engine(
|
||||
SQLALCHEMY_DATABASE_URL, connect_args={"check_same_thread": False}
|
||||
|
|
|
|||
Loading…
Reference in a new issue