mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-09 21:56:50 -04:00
12 lines
232 B
SQL
12 lines
232 B
SQL
-- +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;
|