Create Tokens table

This commit is contained in:
jvyden 2021-10-12 15:07:57 -04:00
parent ddd24d1459
commit 223caa44af
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278

8
DatabaseMigrations/4.sql Normal file
View file

@ -0,0 +1,8 @@
create table Tokens
(
UserId int not null,
MMAuth text not null
);
create unique index Tokens_MMAuth_uindex
on Tokens (MMAuth);