mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 00:48:32 +01:00
rename forward_email table to contact
This commit is contained in:
parent
f8f1e2124a
commit
48eeea1650
1 changed files with 25 additions and 0 deletions
25
migrations/versions/2020_031709_7744c5c16159_.py
Normal file
25
migrations/versions/2020_031709_7744c5c16159_.py
Normal file
|
@ -0,0 +1,25 @@
|
|||
"""empty message
|
||||
|
||||
Revision ID: 7744c5c16159
|
||||
Revises: 9081f1a90939
|
||||
Create Date: 2020-03-17 09:52:10.662573
|
||||
|
||||
"""
|
||||
import sqlalchemy_utils
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
from sqlalchemy.dialects import postgresql
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = "7744c5c16159"
|
||||
down_revision = "9081f1a90939"
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade():
|
||||
op.rename_table("forward_email", "contact")
|
||||
|
||||
|
||||
def downgrade():
|
||||
op.rename_table("contact", "forward_email")
|
Loading…
Reference in a new issue