mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-04 20:31:28 +00:00
8 lines
142 B
SQL
8 lines
142 B
SQL
create table Tokens
|
|
(
|
|
UserId int not null,
|
|
MMAuth text not null
|
|
);
|
|
|
|
create unique index Tokens_MMAuth_uindex
|
|
on Tokens (MMAuth);
|