mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
ae59760222
Summary: Ref T7152. This implements the administrative UI for the upstream email invite workflow. Pieces of this will be reused in Instances to implement the instance invite workflow, although some of it is probably going to be a bit copy/pastey. This doesn't actually create or send invites yet, and they still can't be carried through registration. Test Plan: {F290970} {F290971} Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T7152 Differential Revision: https://secure.phabricator.com/D11733
5 lines
164 B
SQL
5 lines
164 B
SQL
ALTER TABLE {$NAMESPACE}_user.user_authinvite
|
|
ADD phid VARBINARY(64) NOT NULL;
|
|
|
|
ALTER TABLE {$NAMESPACE}_user.user_authinvite
|
|
ADD UNIQUE KEY `key_phid` (phid);
|