Skip to content

Commit

Permalink
Nope, we didn't need that last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsuta committed Nov 29, 2024
1 parent afba60f commit 4252ece
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,18 +52,12 @@ def sqlite_column_reflect_listener(inspector, table, column_info):


def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_constraint('uq_indie_developer_attendee_id', 'indie_developer', type_='unique')
op.add_column('page_view_tracking', sa.Column('supervisor', sa.Unicode(), server_default='', nullable=False))
op.add_column('report_tracking', sa.Column('supervisor', sa.Unicode(), server_default='', nullable=False))
op.add_column('tracking', sa.Column('supervisor', sa.Unicode(), server_default='', nullable=False))
# ### end Alembic commands ###


def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_column('tracking', 'supervisor')
op.drop_column('report_tracking', 'supervisor')
op.drop_column('page_view_tracking', 'supervisor')
op.create_unique_constraint('uq_indie_developer_attendee_id', 'indie_developer', ['attendee_id'])
# ### end Alembic commands ###

0 comments on commit 4252ece

Please sign in to comment.