mirror of
https://github.com/GSA/notifications-api.git
synced 2026-09-11 10:28:55 -04:00
reformat
This commit is contained in:
@@ -9,17 +9,19 @@ from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
revision = '0313_email_access_validated_at'
|
||||
down_revision = '0312_populate_returned_letters'
|
||||
revision = "0313_email_access_validated_at"
|
||||
down_revision = "0312_populate_returned_letters"
|
||||
|
||||
|
||||
def upgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.add_column('users', sa.Column('email_access_validated_at', sa.DateTime(), nullable=True))
|
||||
op.add_column(
|
||||
"users", sa.Column("email_access_validated_at", sa.DateTime(), nullable=True)
|
||||
)
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade():
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.drop_column('users', 'email_access_validated_at')
|
||||
op.drop_column("users", "email_access_validated_at")
|
||||
# ### end Alembic commands ###
|
||||
|
||||
Reference in New Issue
Block a user