1
0
Fork 0

Missing migration

This commit is contained in:
Emmanuel Viennet 2023-03-14 23:12:15 +01:00
parent c44ec8c619
commit e448ba91ed
2 changed files with 31 additions and 1 deletions

View File

@ -0,0 +1,30 @@
"""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 ###

View File

@ -1,7 +1,7 @@
# -*- mode: python -*-
# -*- coding: utf-8 -*-
SCOVERSION = "9.4.63"
SCOVERSION = "9.4.64"
SCONAME = "ScoDoc"