mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
30 lines
696 B
Python
30 lines
696 B
Python
|
"""empty message
|
||
|
|
||
|
Revision ID: 818b0a956205
|
||
|
Revises: 4bc54632d9aa
|
||
|
Create Date: 2024-02-01 10:43:46.253184
|
||
|
|
||
|
"""
|
||
|
import sqlalchemy_utils
|
||
|
from alembic import op
|
||
|
import sqlalchemy as sa
|
||
|
|
||
|
|
||
|
# revision identifiers, used by Alembic.
|
||
|
revision = '818b0a956205'
|
||
|
down_revision = '4bc54632d9aa'
|
||
|
branch_labels = None
|
||
|
depends_on = None
|
||
|
|
||
|
|
||
|
def upgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
op.add_column('alias', sa.Column('last_email_log_id', sa.Integer(), nullable=True))
|
||
|
# ### end Alembic commands ###
|
||
|
|
||
|
|
||
|
def downgrade():
|
||
|
# ### commands auto generated by Alembic - please adjust! ###
|
||
|
op.drop_column('alias', 'last_email_log_id')
|
||
|
# ### end Alembic commands ###
|