29 lines
570 B
Python
29 lines
570 B
Python
"""Add theme column to user table
|
|
|
|
Revision ID: 173774695298
|
|
Revises: c07c6e720021
|
|
Create Date: 2025-01-23 15:16:46.761912
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '173774695298'
|
|
down_revision = 'c07c6e720021'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
pass
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
pass
|
|
# ### end Alembic commands ###
|