summaryrefslogtreecommitdiffstats
path: root/aurweb/schema.py
diff options
context:
space:
mode:
Diffstat (limited to 'aurweb/schema.py')
-rw-r--r--aurweb/schema.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/aurweb/schema.py b/aurweb/schema.py
index 20f3e5ce..a1d56281 100644
--- a/aurweb/schema.py
+++ b/aurweb/schema.py
@@ -67,6 +67,7 @@ Users = Table(
Column('CommentNotify', TINYINT(1), nullable=False, server_default=text("1")),
Column('UpdateNotify', TINYINT(1), nullable=False, server_default=text("0")),
Column('OwnershipNotify', TINYINT(1), nullable=False, server_default=text("1")),
+ Column('SSOAccountID', String(255), nullable=True, unique=True),
Index('UsersAccountTypeID', 'AccountTypeID'),
mysql_engine='InnoDB',
)