- correction of some bugs: - dynamic fields for adding documents / urls to dossier catalog - tabs in latest bootstrap version no longer functional - partner association of license tier not working when no partner selected - data-type dynamic field needs conversion to isoformat - Add public tables to env.py of tenant schema
48 lines
1.8 KiB
Python
48 lines
1.8 KiB
Python
"""Add SpecialistMagicLink model
|
|
|
|
Revision ID: d69520ec540d
|
|
Revises: 55c696c4a687
|
|
Create Date: 2025-06-03 20:25:51.129869
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
import pgvector
|
|
from sqlalchemy.dialects import postgresql
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'd69520ec540d'
|
|
down_revision = '55c696c4a687'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.create_table('specialist_magic_link',
|
|
sa.Column('id', sa.Integer(), nullable=False),
|
|
sa.Column('name', sa.String(length=50), nullable=False),
|
|
sa.Column('description', sa.Text(), nullable=True),
|
|
sa.Column('specialist_id', sa.Integer(), nullable=False),
|
|
sa.Column('magic_link_code', sa.String(length=55), nullable=False),
|
|
sa.Column('valid_from', sa.DateTime(), nullable=True),
|
|
sa.Column('valid_to', sa.DateTime(), nullable=True),
|
|
sa.Column('specialist_args', 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(['specialist_id'], ['specialist.id'], ondelete='CASCADE'),
|
|
sa.ForeignKeyConstraint(['updated_by'], ['public.user.id'], ),
|
|
sa.PrimaryKeyConstraint('id'),
|
|
sa.UniqueConstraint('magic_link_code')
|
|
)
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_table('specialist_magic_link')
|
|
# ### end Alembic commands ###
|