Skip to content

Commit 36866db

Browse files
author
Dave MacFarlane
committed
Update schema
1 parent 5302ff3 commit 36866db

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

SQL/0000-00-00-schema.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ CREATE TABLE `users` (
105105
`Active` enum('Y','N') NOT NULL default 'Y',
106106
`Password_hash` varchar(255) default NULL,
107107
`PasswordChangeRequired` tinyint(1) NOT NULL default 0,
108+
`TOTPSecret` binary(64) DEFAULT NULL,
108109
`Pending_approval` enum('Y','N') default 'Y',
109110
`Doc_Repo_Notifications` enum('Y','N') default 'N',
110111
`language_preference` integer unsigned default NULL,
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ALTER TABLE users ADD COLUMN TOTPSecret binary(64) DEFAULT NULL AFTER PasswordChangeRequired;

0 commit comments

Comments
 (0)