Skip to content

Commit

Permalink
[PAY-433] Fixed Ray's broken prod account (#3523)
Browse files Browse the repository at this point in the history
* [PAY-433] Fixed Ray's broken prod account
  • Loading branch information
dharit-tan authored Jul 22, 2022
1 parent 9048086 commit 1ea1dbb
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
"""fix_ray_account
Revision ID: ab56e2d974a6
Revises: 08becec375f3
Create Date: 2022-07-21 15:24:49.790954
"""
from alembic import op

# revision identifiers, used by Alembic.
revision = 'ab56e2d974a6'
down_revision = '08becec375f3'
branch_labels = None
depends_on = None


def upgrade():
op.execute("update users set wallet = '0x1111111111222222222233333333334444444444' where user_id = 987591;")


def downgrade():
pass

0 comments on commit 1ea1dbb

Please sign in to comment.