Skip to content

Commit

Permalink
Add a DB migration to remove token.userid
Browse files Browse the repository at this point in the history
Depends on #8522 and
#8523.
  • Loading branch information
seanh committed Feb 14, 2024
1 parent 718119f commit 8a9dbd0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions h/migrations/versions/36459b033a54_remove_token_userid.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
"""Remove token.userid."""
from alembic import op


revision = "36459b033a54"
down_revision = "2127515df829"


def upgrade():
op.drop_column("token", "userid")


def downgrade():
pass

0 comments on commit 8a9dbd0

Please sign in to comment.