mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
7 lines
157 B
MySQL
7 lines
157 B
MySQL
|
CREATE TABLE phabricator_user.user_nametoken (
|
||
|
token VARCHAR(255) NOT NULL,
|
||
|
userID INT UNSIGNED NOT NULL,
|
||
|
KEY (token),
|
||
|
key (userID)
|
||
|
) ENGINE=InnoDB;
|