4.21.3
This commit is contained in:
29
app/migrations/versions/18e934d58f55_.py
Normal file
29
app/migrations/versions/18e934d58f55_.py
Normal file
@ -0,0 +1,29 @@
|
||||
"""empty message
|
||||
|
||||
Revision ID: 18e934d58f55
|
||||
Revises: 0c7f1a48aac9
|
||||
Create Date: 2019-12-22 16:31:33.531138
|
||||
|
||||
"""
|
||||
import sqlalchemy_utils
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '18e934d58f55'
|
||||
down_revision = '0c7f1a48aac9'
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.drop_column('gen_email', 'custom')
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.add_column('gen_email', sa.Column('custom', sa.BOOLEAN(), server_default=sa.text('false'), autoincrement=False, nullable=False))
|
||||
# ### end Alembic commands ###
|
Reference in New Issue
Block a user