mirror of
https://github.com/simple-login/app.git
synced 2025-02-23 15:23:27 +08:00
generate new migration script
This commit is contained in:
parent
4fe02266f2
commit
d439871f65
1 changed files with 29 additions and 0 deletions
29
migrations/versions/2020_051712_659d979b64ce_.py
Normal file
29
migrations/versions/2020_051712_659d979b64ce_.py
Normal file
|
@ -0,0 +1,29 @@
|
|||
"""empty message
|
||||
|
||||
Revision ID: 659d979b64ce
|
||||
Revises: c31cdf879ee3
|
||||
Create Date: 2020-05-17 12:50:53.360910
|
||||
|
||||
"""
|
||||
import sqlalchemy_utils
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '659d979b64ce'
|
||||
down_revision = 'c31cdf879ee3'
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.add_column('alias', sa.Column('disable_pgp', sa.Boolean(), server_default='0', nullable=False))
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.drop_column('alias', 'disable_pgp')
|
||||
# ### end Alembic commands ###
|
Loading…
Reference in a new issue