mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 12:19:06 +00:00
33 lines
842 B
Python
33 lines
842 B
Python
"""Add zulip message id
|
|
|
|
Revision ID: 764ce6db4388
|
|
Revises: 62dea3db63a5
|
|
Create Date: 2024-09-06 14:02:06.649665
|
|
|
|
"""
|
|
|
|
from typing import Sequence, Union
|
|
|
|
import sqlalchemy as sa
|
|
from alembic import op
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision: str = "764ce6db4388"
|
|
down_revision: Union[str, None] = "62dea3db63a5"
|
|
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("zulip_message_id", sa.Integer(), nullable=True)
|
|
)
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade() -> None:
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_column("transcript", "zulip_message_id")
|
|
# ### end Alembic commands ###
|