mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +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;
|