Skip to content

Commit

Permalink
reenable pinpoint client
Browse files Browse the repository at this point in the history
  • Loading branch information
sastels committed May 13, 2024
1 parent 727070f commit 76ab640
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions migrations/versions/0450_enable_pinpoint_provider.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
"""
Revision ID: 0450_enable_pinpoint_provider
Revises: 0449_update_magic_link_auth
Create Date: 2021-01-08 09:03:00 .214680
"""
from alembic import op

revision = "0450_enable_pinpoint_provider"
down_revision = "0449_update_magic_link_auth"


def upgrade():
op.execute("UPDATE provider_details set active=true where identifier in ('pinpoint');")


def downgrade():
op.execute("UPDATE provider_details set active=false where identifier in ('pinpoint');")

0 comments on commit 76ab640

Please sign in to comment.