Skip to content

Commit

Permalink
Fixed default value
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Wellman authored and Michael Wellman committed May 29, 2024
1 parent cf44004 commit 9acdcee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migrations/versions/0369_vaprofile_cache_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.add_column('va_profile_local_cache', sa.Column('participant_id', sa.Integer(), nullable=True))
op.add_column('va_profile_local_cache', sa.Column('has_duplicate_mappings', sa.Boolean(), nullable=False, server_default=sa.text('false')))
op.add_column('va_profile_local_cache', sa.Column('has_duplicate_mappings', sa.Boolean(), nullable=False, server_default=sa.false()))
# ### end Alembic commands ###


Expand Down

0 comments on commit 9acdcee

Please sign in to comment.