mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
3fa9db9bb7
* Change default unsub behaviour to disable alias by default * Alter default valut for unsub_behaviouur * Added comments to the migration Co-authored-by: Adrià Casajús <adria.casajus@proton.ch>
28 lines
687 B
Python
28 lines
687 B
Python
"""default_unsub_behaviour
|
|
|
|
Revision ID: 89081a00fc7d
|
|
Revises: b0101a66bb77
|
|
Create Date: 2022-07-20 11:32:32.424358
|
|
|
|
"""
|
|
import sqlalchemy_utils
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '89081a00fc7d'
|
|
down_revision = 'b0101a66bb77'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# See UnsubscribeBehaviourEnum for the meaning of the values (0 is disable alias)
|
|
op.execute("ALTER TABLE users ALTER unsub_behaviour SET DEFAULT 0")
|
|
|
|
|
|
def downgrade():
|
|
# See UnsubscribeBehaviourEnum for the meaning of the values (2 is preserve original)
|
|
op.execute("ALTER TABLE users ALTER unsub_behaviour SET DEFAULT 2")
|