"""Update notecolours table Revision ID: 52cbded98e7c Revises: c55992d1fe5f Create Date: 2022-02-06 12:34:30.099417 """ from alembic import op import sqlalchemy as sa from sqlalchemy.dialects import mysql # revision identifiers, used by Alembic. revision = '52cbded98e7c' down_revision = 'c55992d1fe5f' branch_labels = None depends_on = None def upgrade(): # ### commands auto generated by Alembic - please adjust! ### op.add_column('notecolours', sa.Column('colour', sa.String(length=21), nullable=True)) op.drop_column('notecolours', 'hexcolour') # ### end Alembic commands ### def downgrade(): # ### commands auto generated by Alembic - please adjust! ### op.add_column('notecolours', sa.Column('hexcolour', mysql.VARCHAR(length=6), nullable=True)) op.drop_column('notecolours', 'colour') # ### end Alembic commands ###