29 lines
570 B
Python
29 lines
570 B
Python
"""Add theme column to user table
|
|
|
|
Revision ID: c07c6e720021
|
|
Revises: e341b0e3043c
|
|
Create Date: 2025-01-23 15:13:01.413532
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = 'c07c6e720021'
|
|
down_revision = 'e341b0e3043c'
|
|
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 ###
|