# #region Alembic.AddAgentConversations [C:2] [TYPE Function] [SEMANTICS alembic,migration,agent] # @BRIEF Add agent_conversations and agent_messages tables for Gradio Agent Chat. # @RELATION DEPENDS_ON -> [Models.Agent] """add agent conversations Revision ID: f2b3c4d5e6f7 Revises: f0e9d8c7b6a5 Create Date: 2026-06-09 13:30:00.000000 """ from typing import Sequence, Union from alembic import op import sqlalchemy as sa # revision identifiers, used by Alembic. revision: str = "f2b3c4d5e6f7" down_revision: Union[str, None] = "f0e9d8c7b6a5" branch_labels: Union[str, Sequence[str], None] = None depends_on: Union[str, Sequence[str], None] = None def upgrade() -> None: # ### commands auto generated by Alembic - please adjust! ### op.create_table( "agent_conversations", sa.Column("id", sa.String(), nullable=False), sa.Column("user_id", sa.String(), nullable=False), sa.Column("title", sa.String(256), nullable=False, server_default="New Conversation"), sa.Column("is_archived", sa.Boolean(), nullable=False, server_default=sa.text("false")), sa.Column("created_at", sa.DateTime(), server_default=sa.func.now()), sa.Column("updated_at", sa.DateTime(), server_default=sa.func.now()), sa.PrimaryKeyConstraint("id"), ) op.create_index( op.f("ix_agent_conversations_user_id"), "agent_conversations", ["user_id"], unique=False, ) op.create_table( "agent_messages", sa.Column("id", sa.String(), nullable=False), sa.Column( "conversation_id", sa.String(), sa.ForeignKey("agent_conversations.id"), nullable=False, ), sa.Column("role", sa.String(16), nullable=False), sa.Column("text", sa.Text(), nullable=True), sa.Column("state", sa.String(32), nullable=True), sa.Column("tool_calls", sa.JSON(), nullable=True), sa.Column("attachments", sa.JSON(), nullable=True), sa.Column("created_at", sa.DateTime(), server_default=sa.func.now()), sa.PrimaryKeyConstraint("id"), ) op.create_index( op.f("ix_agent_messages_conversation_id"), "agent_messages", ["conversation_id"], unique=False, ) # ### end Alembic commands ### def downgrade() -> None: # ### commands auto generated by Alembic - please adjust! ### op.drop_index(op.f("ix_agent_messages_conversation_id"), table_name="agent_messages") op.drop_table("agent_messages") op.drop_index(op.f("ix_agent_conversations_user_id"), table_name="agent_conversations") op.drop_table("agent_conversations") # ### end Alembic commands ### # #endregion Alembic.AddAgentConversations