mirror of
https://github.com/standardebooks/web.git
synced 2025-07-07 15:20:32 -04:00
5 lines
235 B
SQL
5 lines
235 B
SQL
CREATE TABLE `ProjectUnassignedUsers` (
|
|
`UserId` int(10) unsigned NOT NULL,
|
|
`Role` enum('manager','reviewer') NOT NULL,
|
|
UNIQUE KEY `idxUnique` (`Role`,`UserId`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|