mirror of
https://github.com/GSA/notifications-api.git
synced 2026-09-11 10:28:55 -04:00
reformat
This commit is contained in:
@@ -8,22 +8,25 @@ Create Date: 2020-01-31 10:35:44.524606
|
||||
from alembic import op
|
||||
|
||||
|
||||
revision = '0314_populate_email_access'
|
||||
down_revision = '0313_email_access_validated_at'
|
||||
revision = "0314_populate_email_access"
|
||||
down_revision = "0313_email_access_validated_at"
|
||||
|
||||
|
||||
def upgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
# if user has email_auth, set email_access_validated_at on last login, else set it at user created_at date.
|
||||
op.execute("""
|
||||
op.execute(
|
||||
"""
|
||||
UPDATE
|
||||
users
|
||||
SET
|
||||
email_access_validated_at = created_at
|
||||
WHERE
|
||||
email_access_validated_at IS NULL
|
||||
""")
|
||||
op.execute("""
|
||||
"""
|
||||
)
|
||||
op.execute(
|
||||
"""
|
||||
UPDATE
|
||||
users
|
||||
SET
|
||||
@@ -32,12 +35,13 @@ def upgrade():
|
||||
auth_type = 'email_auth'
|
||||
AND
|
||||
logged_in_at IS NOT NULL
|
||||
""")
|
||||
op.alter_column('users', 'email_access_validated_at', nullable=False)
|
||||
"""
|
||||
)
|
||||
op.alter_column("users", "email_access_validated_at", nullable=False)
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.alter_column('users', 'email_access_validated_at', nullable=True)
|
||||
op.alter_column("users", "email_access_validated_at", nullable=True)
|
||||
# ### end Alembic commands ###
|
||||
|
||||
Reference in New Issue
Block a user