Basic server app with WS connection.
Some checks failed
Linting and tests / Linting (push) Failing after 37s

This commit is contained in:
2025-09-15 09:33:25 +05:00
parent 466b58b41d
commit 2c13e3f380
25 changed files with 928 additions and 27 deletions

View File

@@ -0,0 +1,12 @@
-- +goose Up
CREATE TABLE IF NOT EXISTS options (
id UUID NOT NULL PRIMARY KEY,
user_id UUID NOT NULL,
key VARCHAR(1024) NOT NULL,
value VARCHAR(8192)
);
CREATE UNIQUE INDEX IF NOT EXISTS options_user_id_key_idx ON options(user_id, key);
-- +goose Down
DROP TABLE IF EXISTS options;