Implemented roll request, updated API requests
This commit is contained in:
@@ -16,8 +16,13 @@ CREATE TABLE IF NOT EXISTS messages (
|
||||
request_tags TEXT[] NOT NULL,
|
||||
response_tags TEXT[] NOT NULL
|
||||
);
|
||||
CREATE TABLE IF NOT EXISTS dice_rolls (
|
||||
id UUID PRIMARY KEY NOT NULL DEFAULT gen_random_uuid()
|
||||
CREATE TABLE IF NOT EXISTS dice_thresholds (
|
||||
id UUID PRIMARY KEY NOT NULL DEFAULT gen_random_uuid(),
|
||||
owner_id BIGINT NOT NULL,
|
||||
dice TEXT NOT NULL,
|
||||
user_id BIGINT,
|
||||
value INT,
|
||||
operator TEXT
|
||||
);
|
||||
CREATE TABLE IF NOT EXISTS events (
|
||||
id UUID PRIMARY KEY NOT NULL,
|
||||
|
||||
Reference in New Issue
Block a user