Skip to content

Commit

Permalink
Add migration for Microsoft Auth
Browse files Browse the repository at this point in the history
  • Loading branch information
maximdeclercq committed Apr 20, 2023
1 parent 2d6aea1 commit 8b1b3f4
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions app/migrations/versions/89b2c980b663_.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
"""empty message
Revision ID: 89b2c980b663
Revises: 9eac0f3d7b1e
Create Date: 2023-04-20 02:01:54.558602
"""

# revision identifiers, used by Alembic.
revision = '89b2c980b663'
down_revision = '9eac0f3d7b1e'

from alembic import op
import sqlalchemy as sa


def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.add_column('user', sa.Column('microsoft_uuid', sa.VARCHAR(length=120), nullable=True))
# ### end Alembic commands ###


def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_column('user', 'microsoft_uuid')
# ### end Alembic commands ###

0 comments on commit 8b1b3f4

Please sign in to comment.