Add SSO account ID in table Users

This column holds a user ID issed by the single sign-on provider. For
Keycloak, it is an UUID. For more flexibility, we will be using a
standardly-sized VARCHAR field.

Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
This commit is contained in:
Frédéric Mangano-Tarumi 2020-06-08 20:16:27 +02:00 committed by Lukas Fleischer
parent 3f31d149a6
commit a5554c19a9
2 changed files with 31 additions and 0 deletions

View file

@ -67,6 +67,7 @@ Users = Table(
Column('CommentNotify', TINYINT(1), nullable=False, server_default=text("1")), Column('CommentNotify', TINYINT(1), nullable=False, server_default=text("1")),
Column('UpdateNotify', TINYINT(1), nullable=False, server_default=text("0")), Column('UpdateNotify', TINYINT(1), nullable=False, server_default=text("0")),
Column('OwnershipNotify', TINYINT(1), nullable=False, server_default=text("1")), Column('OwnershipNotify', TINYINT(1), nullable=False, server_default=text("1")),
Column('SSOAccountID', String(255), nullable=True, unique=True),
Index('UsersAccountTypeID', 'AccountTypeID'), Index('UsersAccountTypeID', 'AccountTypeID'),
mysql_engine='InnoDB', mysql_engine='InnoDB',
) )

View file

@ -0,0 +1,30 @@
"""Add SSO account ID in table Users
Revision ID: ef39fcd6e1cd
Revises: f47cad5d6d03
Create Date: 2020-06-08 10:04:13.898617
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = 'ef39fcd6e1cd'
down_revision = 'f47cad5d6d03'
branch_labels = None
depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.add_column('Users', sa.Column('SSOAccountID', sa.String(length=255), nullable=True))
op.create_unique_constraint(None, 'Users', ['SSOAccountID'])
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_constraint(None, 'Users', type_='unique')
op.drop_column('Users', 'SSOAccountID')
# ### end Alembic commands ###