open-webui/backend/open_webui/migrations/util.py
2024-09-04 16:54:48 +02:00

10 lines
216 B
Python

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