This commit is contained in:
Timothy J. Baek
2024-10-01 09:40:08 -07:00
parent c7a0e45bea
commit 4752df9bd8
3 changed files with 6 additions and 20 deletions

View File

@@ -1,19 +0,0 @@
from alembic import command
from alembic.config import Config
from open_webui.env import OPEN_WEBUI_DIR
alembic_cfg = Config(OPEN_WEBUI_DIR / "alembic.ini")
# Set the script location dynamically
migrations_path = OPEN_WEBUI_DIR / "migrations"
alembic_cfg.set_main_option("script_location", str(migrations_path))
def revision(message: str) -> None:
command.revision(alembic_cfg, message=message, autogenerate=False)
if __name__ == "__main__":
input_message = input("Enter the revision message: ")
revision(input_message)

View File

@@ -1,5 +1,6 @@
from alembic import op
from sqlalchemy import Inspector
import uuid
def get_existing_tables():
@@ -7,3 +8,7 @@ def get_existing_tables():
inspector = Inspector.from_engine(con)
tables = set(inspector.get_table_names())
return tables
def get_revision_id():
return str(uuid.uuid4()).replace("-", "")[:12]