mirror of
https://github.com/open-webui/open-webui
synced 2025-01-30 06:18:20 +00:00
refac
This commit is contained in:
parent
c7a0e45bea
commit
4752df9bd8
@ -34,8 +34,8 @@ class ERROR_MESSAGES(str, Enum):
|
|||||||
|
|
||||||
ID_TAKEN = "Uh-oh! This id is already registered. Please choose another id string."
|
ID_TAKEN = "Uh-oh! This id is already registered. Please choose another id string."
|
||||||
MODEL_ID_TAKEN = "Uh-oh! This model id is already registered. Please choose another model id string."
|
MODEL_ID_TAKEN = "Uh-oh! This model id is already registered. Please choose another model id string."
|
||||||
|
|
||||||
NAME_TAG_TAKEN = "Uh-oh! This name tag is already registered. Please choose another name tag string."
|
NAME_TAG_TAKEN = "Uh-oh! This name tag is already registered. Please choose another name tag string."
|
||||||
|
|
||||||
INVALID_TOKEN = (
|
INVALID_TOKEN = (
|
||||||
"Your session has expired or the token is invalid. Please sign in again."
|
"Your session has expired or the token is invalid. Please sign in again."
|
||||||
)
|
)
|
||||||
|
@ -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)
|
|
@ -1,5 +1,6 @@
|
|||||||
from alembic import op
|
from alembic import op
|
||||||
from sqlalchemy import Inspector
|
from sqlalchemy import Inspector
|
||||||
|
import uuid
|
||||||
|
|
||||||
|
|
||||||
def get_existing_tables():
|
def get_existing_tables():
|
||||||
@ -7,3 +8,7 @@ def get_existing_tables():
|
|||||||
inspector = Inspector.from_engine(con)
|
inspector = Inspector.from_engine(con)
|
||||||
tables = set(inspector.get_table_names())
|
tables = set(inspector.get_table_names())
|
||||||
return tables
|
return tables
|
||||||
|
|
||||||
|
|
||||||
|
def get_revision_id():
|
||||||
|
return str(uuid.uuid4()).replace("-", "")[:12]
|
||||||
|
Loading…
Reference in New Issue
Block a user