Skip to content

Commit

Permalink
chore: fix migration
Browse files Browse the repository at this point in the history
  • Loading branch information
robcxyz committed Apr 2, 2024
1 parent a890e17 commit bc5f9cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions icon_governance/alembic/versions/345e65377c3d_v0_7_1_apys.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.alter_column('apy_time', 'total_wage',
existing_type=postgresql.DOUBLE_PRECISION(precision=53),
nullable=False)
nullable=True)
op.alter_column('apy_time', 'active_preps',
existing_type=sa.INTEGER(),
nullable=False)
nullable=True)
op.drop_column('apy_time', 'cps_apy')
op.drop_column('apy_time', 'relay_apy')
# ### end Alembic commands ###
Expand Down

0 comments on commit bc5f9cb

Please sign in to comment.