Add missing default value on the new reversion column
This commit is contained in:
parent
6f1a366f6c
commit
6a52ffa942
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ import sqlalchemy as sa
|
|||
|
||||
def upgrade(tables):
|
||||
### commands auto generated by Alembic - please adjust! ###
|
||||
op.add_column('repositorytag', sa.Column('reversion', sa.Boolean(), nullable=False))
|
||||
op.add_column('repositorytag', sa.Column('reversion', sa.Boolean(), nullable=False, default=False))
|
||||
### end Alembic commands ###
|
||||
|
||||
|
||||
|
|
Reference in a new issue