This website requires JavaScript.
Explore
Help
Sign In
root
/
open-webui
mirror of
https://github.com/open-webui/open-webui.git
Watch
1
Star
0
Fork
You've already forked open-webui
0
Code
Issues
Actions
Packages
Projects
Releases
Wiki
Activity
e3503d6617
open-webui
/
backend
/
apps
/
web
/
internal
/
db.py
5 lines
75 B
Python
Raw
Normal View
History
Unescape
Escape
feat: db migration to sqlite
2023-12-26 13:44:28 +08:00
from
peewee
import
*
fix: docker container volume mount location
2023-12-27 16:11:23 +08:00
DB
=
SqliteDatabase
(
"
./data/ollama.db
"
)
feat: db migration to sqlite
2023-12-26 13:44:28 +08:00
DB
.
connect
(
)