mirror of
https://github.com/open-webui/open-webui
synced 2025-02-20 12:00:22 +00:00
feat(sqlalchemy): add missing file
This commit is contained in:
parent
8f939cf55b
commit
2fb27adbf6
9
backend/migrations/util.py
Normal file
9
backend/migrations/util.py
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
from alembic import op
|
||||||
|
from sqlalchemy import Inspector
|
||||||
|
|
||||||
|
|
||||||
|
def get_existing_tables():
|
||||||
|
con = op.get_bind()
|
||||||
|
inspector = Inspector.from_engine(con)
|
||||||
|
tables = set(inspector.get_table_names())
|
||||||
|
return tables
|
Loading…
Reference in New Issue
Block a user