You've already forked topic-todo-list-bot
mirror of
https://github.com/nh-server/topic-todo-list-bot.git
synced 2026-04-30 11:26:07 -07:00
bdef90216f
- A title is added to each todo - A topic ID is added to each todo embed - The topic ID must be used to close an open topic - listopen is changed to show title instead of description
18 lines
323 B
SQL
18 lines
323 B
SQL
CREATE TABLE IF NOT EXISTS todo
|
|
(
|
|
id SERIAL PRIMARY KEY,
|
|
guild_id BIGINT,
|
|
title TEXT,
|
|
message TEXT,
|
|
priority_level INT,
|
|
message_id BIGINT,
|
|
message_link TEXT
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS settings
|
|
(
|
|
guild_id BIGINT PRIMARY KEY,
|
|
output_channel_id BIGINT,
|
|
allowed_role_ids BIGINT[]
|
|
);
|