mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-03 11:51:27 +00:00
Create Tokens table
This commit is contained in:
parent
ddd24d1459
commit
223caa44af
1 changed files with 8 additions and 0 deletions
8
DatabaseMigrations/4.sql
Normal file
8
DatabaseMigrations/4.sql
Normal 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);
|
Loading…
Add table
Add a link
Reference in a new issue