mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 17:35:27 +08:00
rename table gen_email -> alias
This commit is contained in:
parent
4f281bdbbb
commit
ab16f1afeb
1 changed files with 25 additions and 0 deletions
25
migrations/versions/2020_031711_e9395fe234a4_.py
Normal file
25
migrations/versions/2020_031711_e9395fe234a4_.py
Normal file
|
@ -0,0 +1,25 @@
|
|||
"""empty message
|
||||
|
||||
Revision ID: e9395fe234a4
|
||||
Revises: 6e061eb84167
|
||||
Create Date: 2020-03-17 11:37:33.157695
|
||||
|
||||
"""
|
||||
import sqlalchemy_utils
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
from sqlalchemy.dialects import postgresql
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = "e9395fe234a4"
|
||||
down_revision = "6e061eb84167"
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade():
|
||||
op.rename_table("gen_email", "alias")
|
||||
|
||||
|
||||
def downgrade():
|
||||
op.rename_table("alias", "gen_email")
|
Loading…
Reference in a new issue