mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
36 lines
887 B
Python
36 lines
887 B
Python
"""audio_location
|
|
|
|
Revision ID: f819277e5169
|
|
Revises: 4814901632bc
|
|
Create Date: 2023-11-16 10:29:09.351664
|
|
|
|
"""
|
|
|
|
from typing import Sequence, Union
|
|
|
|
import sqlalchemy as sa
|
|
from alembic import op
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision: str = "f819277e5169"
|
|
down_revision: Union[str, None] = "4814901632bc"
|
|
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(
|
|
"audio_location", sa.String(), server_default="local", nullable=False
|
|
),
|
|
)
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade() -> None:
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_column("transcript", "audio_location")
|
|
# ### end Alembic commands ###
|