2023-12-26 13:44:28 +08:00
|
|
|
from peewee import *
|
2024-04-01 18:12:46 +08:00
|
|
|
from peewee_migrate import Router
|
2024-03-21 07:11:36 +08:00
|
|
|
from config import SRC_LOG_LEVELS, DATA_DIR
|
2024-03-02 16:19:24 +08:00
|
|
|
import os
|
2024-03-21 07:11:36 +08:00
|
|
|
import logging
|
2023-12-26 13:44:28 +08:00
|
|
|
|
2024-03-21 07:11:36 +08:00
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
log.setLevel(SRC_LOG_LEVELS["DB"])
|
2024-01-20 04:13:09 +08:00
|
|
|
|
2024-03-02 16:19:24 +08:00
|
|
|
# Check if the file exists
|
|
|
|
if os.path.exists(f"{DATA_DIR}/ollama.db"):
|
|
|
|
# Rename the file
|
|
|
|
os.rename(f"{DATA_DIR}/ollama.db", f"{DATA_DIR}/webui.db")
|
2024-03-21 07:11:36 +08:00
|
|
|
log.info("File renamed successfully.")
|
2024-03-02 16:19:24 +08:00
|
|
|
else:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
DB = SqliteDatabase(f"{DATA_DIR}/webui.db")
|
2024-04-01 18:12:46 +08:00
|
|
|
router = Router(DB, migrate_dir="apps/web/internal/migrations", logger=log)
|
|
|
|
router.run()
|
|
|
|
DB.connect(reuse_if_open=True)
|