Remove test users from database

This commit is contained in:
coolneng 2021-02-10 01:03:52 +01:00
parent 86e44cdf05
commit 71e0824c84
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
"""remove test users
Revision ID: c93f3cf71005
Revises: e443e876bf33
Create Date: 2021-02-10 00:41:48.290699
"""
import sqlalchemy as sa
from alembic import op
# revision identifiers, used by Alembic.
revision = "c93f3cf71005"
down_revision = "e443e876bf33"
branch_labels = None
depends_on = None
def upgrade():
query = "DELETE FROM users WHERE email LIKE '%techugo%'"
op.execute(query)
def downgrade():
pass