forked from ScoDoc/ScoDoc
31 lines
711 B
Python
31 lines
711 B
Python
"""User: mail institutionnel
|
|
|
|
Revision ID: 19a608ebc9b7
|
|
Revises: ae9bb0feea7a
|
|
Create Date: 2023-03-14 16:22:50.907420
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = "19a608ebc9b7"
|
|
down_revision = "ae9bb0feea7a"
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.add_column(
|
|
"user", sa.Column("email_institutionnel", sa.String(length=120), nullable=True)
|
|
)
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_column("user", "email_institutionnel")
|
|
# ### end Alembic commands ###
|