Basic server app with WS connection.
Some checks failed
Linting and tests / Linting (push) Failing after 37s
Some checks failed
Linting and tests / Linting (push) Failing after 37s
This commit is contained in:
@@ -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;
|
Reference in New Issue
Block a user