"""Introducing Specialists Revision ID: e476c2013352 Revises: 331f8100eb87 Create Date: 2024-11-04 08:08:19.737409 """ from alembic import op import sqlalchemy as sa import pgvector from sqlalchemy.dialects import postgresql # revision identifiers, used by Alembic. revision = 'e476c2013352' down_revision = '331f8100eb87' branch_labels = None depends_on = None def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.create_table('specialist', sa.Column('id', sa.Integer(), nullable=False), sa.Column('name', sa.String(length=20), nullable=False), sa.Column('description', sa.Text(), nullable=True), sa.Column('type', sa.String(length=50), nullable=False), sa.Column('tuning', sa.Boolean(), nullable=True), sa.Column('configuration', postgresql.JSONB(astext_type=sa.Text()), nullable=True), sa.Column('arguments', postgresql.JSONB(astext_type=sa.Text()), nullable=True), sa.Column('created_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), sa.Column('created_by', sa.Integer(), nullable=True), sa.Column('updated_at', sa.DateTime(), server_default=sa.text('now()'), nullable=False), sa.Column('updated_by', sa.Integer(), nullable=True), sa.ForeignKeyConstraint(['created_by'], ['public.user.id'], ), sa.ForeignKeyConstraint(['updated_by'], ['public.user.id'], ), sa.PrimaryKeyConstraint('id') ) op.create_table('specialist_retriever', sa.Column('specialist_id', sa.Integer(), nullable=False), sa.Column('retriever_id', sa.Integer(), nullable=False), sa.ForeignKeyConstraint(['retriever_id'], ['retriever.id'], ondelete='CASCADE'), sa.ForeignKeyConstraint(['specialist_id'], ['specialist.id'], ondelete='CASCADE'), sa.PrimaryKeyConstraint('specialist_id', 'retriever_id') ) # ### end Alembic commands ### def downgrade(): # ### commands auto generated by Alembic - please adjust! ### op.drop_table('specialist_retriever') op.drop_table('specialist') # ### end Alembic commands ###