mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-10 06:06:47 -04:00
12 lines
232 B
MySQL
12 lines
232 B
MySQL
|
|
-- +goose Up
|
||
|
|
CREATE TABLE user_sessions (
|
||
|
|
id INTEGER PRIMARY KEY,
|
||
|
|
token VARCHAR(255),
|
||
|
|
username VARCHAR(255),
|
||
|
|
createdat DATETIME
|
||
|
|
);
|
||
|
|
CREATE UNIQUE INDEX token ON user_sessions(token);
|
||
|
|
|
||
|
|
-- +goose Down
|
||
|
|
DROP TABLE user_sessions;
|