123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- """init
- Revision ID: 7e5b5dc7342b
- Revises:
- Create Date: 2024-06-24 13:15:33.808998
- """
- from typing import Sequence, Union
- import sqlalchemy as sa
- from alembic import op
- import open_webui.apps.webui.internal.db
- from open_webui.migrations.util import get_existing_tables
- # revision identifiers, used by Alembic.
- revision: str = "7e5b5dc7342b"
- down_revision: Union[str, None] = None
- branch_labels: Union[str, Sequence[str], None] = None
- depends_on: Union[str, Sequence[str], None] = None
- def upgrade() -> None:
- existing_tables = set(get_existing_tables())
- # ### commands auto generated by Alembic - please adjust! ###
- if "auth" not in existing_tables:
- op.create_table(
- "auth",
- sa.Column("id", sa.String(), nullable=False),
- sa.Column("email", sa.String(), nullable=True),
- sa.Column("password", sa.Text(), nullable=True),
- sa.Column("active", sa.Boolean(), nullable=True),
- sa.PrimaryKeyConstraint("id"),
- )
- if "chat" not in existing_tables:
- op.create_table(
- "chat",
- sa.Column("id", sa.String(), nullable=False),
- sa.Column("user_id", sa.String(), nullable=True),
- sa.Column("title", sa.Text(), nullable=True),
- sa.Column("chat", sa.Text(), nullable=True),
- sa.Column("created_at", sa.BigInteger(), nullable=True),
- sa.Column("updated_at", sa.BigInteger(), nullable=True),
- sa.Column("share_id", sa.Text(), nullable=True),
- sa.Column("archived", sa.Boolean(), nullable=True),
- sa.PrimaryKeyConstraint("id"),
- sa.UniqueConstraint("share_id"),
- )
- if "chatidtag" not in existing_tables:
- op.create_table(
- "chatidtag",
- sa.Column("id", sa.String(), nullable=False),
- sa.Column("tag_name", sa.String(), nullable=True),
- sa.Column("chat_id", sa.String(), nullable=True),
- sa.Column("user_id", sa.String(), nullable=True),
- sa.Column("timestamp", sa.BigInteger(), nullable=True),
- sa.PrimaryKeyConstraint("id"),
- )
- if "document" not in existing_tables:
- op.create_table(
- "document",
- sa.Column("collection_name", sa.String(), nullable=False),
- sa.Column("name", sa.String(), nullable=True),
- sa.Column("title", sa.Text(), nullable=True),
- sa.Column("filename", sa.Text(), nullable=True),
- sa.Column("content", sa.Text(), nullable=True),
- sa.Column("user_id", sa.String(), nullable=True),
- sa.Column("timestamp", sa.BigInteger(), nullable=True),
- sa.PrimaryKeyConstraint("collection_name"),
- sa.UniqueConstraint("name"),
- )
- if "file" not in existing_tables:
- op.create_table(
- "file",
- sa.Column("id", sa.String(), nullable=False),
- sa.Column("user_id", sa.String(), nullable=True),
- sa.Column("filename", sa.Text(), nullable=True),
- sa.Column("meta", apps.webui.internal.db.JSONField(), nullable=True),
- sa.Column("created_at", sa.BigInteger(), nullable=True),
- sa.PrimaryKeyConstraint("id"),
- )
- if "function" not in existing_tables:
- op.create_table(
- "function",
- sa.Column("id", sa.String(), nullable=False),
- sa.Column("user_id", sa.String(), nullable=True),
- sa.Column("name", sa.Text(), nullable=True),
- sa.Column("type", sa.Text(), nullable=True),
- sa.Column("content", sa.Text(), nullable=True),
- sa.Column("meta", apps.webui.internal.db.JSONField(), nullable=True),
- sa.Column("valves", apps.webui.internal.db.JSONField(), nullable=True),
- sa.Column("is_active", sa.Boolean(), nullable=True),
- sa.Column("is_global", sa.Boolean(), nullable=True),
- sa.Column("updated_at", sa.BigInteger(), nullable=True),
- sa.Column("created_at", sa.BigInteger(), nullable=True),
- sa.PrimaryKeyConstraint("id"),
- )
- if "memory" not in existing_tables:
- op.create_table(
- "memory",
- sa.Column("id", sa.String(), nullable=False),
- sa.Column("user_id", sa.String(), nullable=True),
- sa.Column("content", sa.Text(), nullable=True),
- sa.Column("updated_at", sa.BigInteger(), nullable=True),
- sa.Column("created_at", sa.BigInteger(), nullable=True),
- sa.PrimaryKeyConstraint("id"),
- )
- if "model" not in existing_tables:
- op.create_table(
- "model",
- sa.Column("id", sa.Text(), nullable=False),
- sa.Column("user_id", sa.Text(), nullable=True),
- sa.Column("base_model_id", sa.Text(), nullable=True),
- sa.Column("name", sa.Text(), nullable=True),
- sa.Column("params", apps.webui.internal.db.JSONField(), nullable=True),
- sa.Column("meta", apps.webui.internal.db.JSONField(), nullable=True),
- sa.Column("updated_at", sa.BigInteger(), nullable=True),
- sa.Column("created_at", sa.BigInteger(), nullable=True),
- sa.PrimaryKeyConstraint("id"),
- )
- if "prompt" not in existing_tables:
- op.create_table(
- "prompt",
- sa.Column("command", sa.String(), nullable=False),
- sa.Column("user_id", sa.String(), nullable=True),
- sa.Column("title", sa.Text(), nullable=True),
- sa.Column("content", sa.Text(), nullable=True),
- sa.Column("timestamp", sa.BigInteger(), nullable=True),
- sa.PrimaryKeyConstraint("command"),
- )
- if "tag" not in existing_tables:
- op.create_table(
- "tag",
- sa.Column("id", sa.String(), nullable=False),
- sa.Column("name", sa.String(), nullable=True),
- sa.Column("user_id", sa.String(), nullable=True),
- sa.Column("data", sa.Text(), nullable=True),
- sa.PrimaryKeyConstraint("id"),
- )
- if "tool" not in existing_tables:
- op.create_table(
- "tool",
- sa.Column("id", sa.String(), nullable=False),
- sa.Column("user_id", sa.String(), nullable=True),
- sa.Column("name", sa.Text(), nullable=True),
- sa.Column("content", sa.Text(), nullable=True),
- sa.Column("specs", apps.webui.internal.db.JSONField(), nullable=True),
- sa.Column("meta", apps.webui.internal.db.JSONField(), nullable=True),
- sa.Column("valves", apps.webui.internal.db.JSONField(), nullable=True),
- sa.Column("updated_at", sa.BigInteger(), nullable=True),
- sa.Column("created_at", sa.BigInteger(), nullable=True),
- sa.PrimaryKeyConstraint("id"),
- )
- if "user" not in existing_tables:
- op.create_table(
- "user",
- sa.Column("id", sa.String(), nullable=False),
- sa.Column("name", sa.String(), nullable=True),
- sa.Column("email", sa.String(), nullable=True),
- sa.Column("role", sa.String(), nullable=True),
- sa.Column("profile_image_url", sa.Text(), nullable=True),
- sa.Column("last_active_at", sa.BigInteger(), nullable=True),
- sa.Column("updated_at", sa.BigInteger(), nullable=True),
- sa.Column("created_at", sa.BigInteger(), nullable=True),
- sa.Column("api_key", sa.String(), nullable=True),
- sa.Column("settings", apps.webui.internal.db.JSONField(), nullable=True),
- sa.Column("info", apps.webui.internal.db.JSONField(), nullable=True),
- sa.Column("oauth_sub", sa.Text(), nullable=True),
- sa.PrimaryKeyConstraint("id"),
- sa.UniqueConstraint("api_key"),
- sa.UniqueConstraint("oauth_sub"),
- )
- # ### end Alembic commands ###
- def downgrade() -> None:
- # ### commands auto generated by Alembic - please adjust! ###
- op.drop_table("user")
- op.drop_table("tool")
- op.drop_table("tag")
- op.drop_table("prompt")
- op.drop_table("model")
- op.drop_table("memory")
- op.drop_table("function")
- op.drop_table("file")
- op.drop_table("document")
- op.drop_table("chatidtag")
- op.drop_table("chat")
- op.drop_table("auth")
- # ### end Alembic commands ###
|