mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-06 05:11:27 +00:00
17 lines
379 B
SQL
17 lines
379 B
SQL
create table QueuedLevels
|
|
(
|
|
QueuedLevelId int,
|
|
UserId int not null,
|
|
SlotId int not null
|
|
);
|
|
|
|
create unique index QueuedLevels_QueuedLevelId_uindex
|
|
on QueuedLevels (QueuedLevelId);
|
|
|
|
alter table QueuedLevels
|
|
add constraint QueuedLevels_pk
|
|
primary key (QueuedLevelId);
|
|
|
|
alter table QueuedLevels
|
|
modify QueuedLevelId int auto_increment;
|
|
|