ProjectLighthouse/DatabaseMigrations/4.sql
2021-10-12 15:07:57 -04:00

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);