| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 | """empty messageRevision ID: 1c667e62f698Revises: aa4bda3363e3Create Date: 2024-05-28 11:35:33.961196"""from typing import Sequence, Unionfrom alembic import opimport sqlalchemy as saimport sqlmodelfrom sqlalchemy.dialects import mysql# revision identifiers, used by Alembic.revision: str = '1c667e62f698'down_revision: Union[str, None] = 'aa4bda3363e3'branch_labels: Union[str, Sequence[str], None] = Nonedepends_on: Union[str, Sequence[str], None] = Nonedef upgrade() -> None:    # ### commands auto generated by Alembic - please adjust! ###    op.alter_column('assistant', 'response_format',               existing_type=mysql.VARCHAR(collation='utf8mb4_unicode_ci', length=255),               type_=sa.JSON(),               existing_nullable=True)    op.alter_column('run', 'response_format',               existing_type=mysql.VARCHAR(collation='utf8mb4_unicode_ci', length=255),               type_=sa.JSON(),               existing_nullable=True)    # ### end Alembic commands ###def downgrade() -> None:    # ### commands auto generated by Alembic - please adjust! ###    op.alter_column('run', 'response_format',               existing_type=sa.JSON(),               type_=mysql.VARCHAR(collation='utf8mb4_unicode_ci', length=255),               existing_nullable=True)    op.alter_column('assistant', 'response_format',               existing_type=sa.JSON(),               type_=mysql.VARCHAR(collation='utf8mb4_unicode_ci', length=255),               existing_nullable=True)    # ### end Alembic commands ###
 |