mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
49 lines
1.2 KiB
Python
49 lines
1.2 KiB
Python
"""Add transcript source kind
|
|
|
|
Revision ID: 74b2b0236931
|
|
Revises: 0925da921477
|
|
Create Date: 2024-10-04 14:19:23.625447
|
|
|
|
"""
|
|
|
|
from typing import Sequence, Union
|
|
|
|
import sqlalchemy as sa
|
|
from alembic import op
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision: str = "74b2b0236931"
|
|
down_revision: Union[str, None] = "0925da921477"
|
|
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.add_column(
|
|
"transcript",
|
|
sa.Column(
|
|
"source_kind",
|
|
sa.Enum("ROOM", "LIVE", "FILE", name="sourcekind"),
|
|
nullable=True,
|
|
),
|
|
)
|
|
|
|
op.execute(
|
|
"UPDATE transcript SET source_kind = 'room' WHERE meeting_id IS NOT NULL"
|
|
)
|
|
op.execute("UPDATE transcript SET source_kind = 'live' WHERE meeting_id IS NULL")
|
|
|
|
with op.batch_alter_table("transcript", schema=None) as batch_op:
|
|
batch_op.alter_column("source_kind", nullable=False)
|
|
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade() -> None:
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_column("transcript", "source_kind")
|
|
|
|
|
|
# ### end Alembic commands ###
|