v1.2.8 Heartbeat Monitoring #6
24
TODO.md
24
TODO.md
@ -1,10 +1,3 @@
|
|||||||
## In Progress
|
|
||||||
☑ Switch `/setup` to ask for the tree and leaderboard channels
|
|
||||||
* Switch `/compare` to check for newer trees and leaderboards when run **and** on every refresh
|
|
||||||
|
|
||||||
## Future Ideas
|
|
||||||
* Go through and comment the code
|
|
||||||
|
|
||||||
## Variable Structures
|
## Variable Structures
|
||||||
|
|
||||||
guildInfo = {
|
guildInfo = {
|
||||||
@ -21,7 +14,18 @@ guildInfo = {
|
|||||||
reminderOptIn: 0,
|
reminderOptIn: 0,
|
||||||
}
|
}
|
||||||
|
|
||||||
## Expected Behaviors
|
## New Table Planning
|
||||||
|
Table: `silvanus`.timers
|
||||||
|
|
||||||
* Run `/compare` before `/setup`: `/compare` will search the current channel for tree and leaderboard messages, then create a comparison embed. If it can't find `/tree` or `/top trees` messages, it'll return an error saying as much.
|
id | INT | NOT NULL | AUTO INCREMENT | PRIMARY KEY
|
||||||
* Run `/compare` after `/setup`: ``/compare` will search the current channel for tree and leaderboard messages, then create a comparison embed. If it can't find `/tree` or `/top trees` messages, it'll just use old data silently (odds are `/compare` is being run from another channel, that's fine)
|
status | VARCHAR(10) | NOT NULL | DEFAULT "WAITING"
|
||||||
|
dc_timecode | INT | NOT NULL | Discord timecode
|
||||||
|
guild_id | INT UNSIGNED | NOT NULL | Discord guild ID for referencing `silvanus`.guildInfo
|
||||||
|
|
||||||
|
|
||||||
|
Table: `silvanus`.auto_role_status
|
||||||
|
|
||||||
|
id | INT | NOT NULL | AUTO INCREMENT | PRIMARY KEY
|
||||||
|
user_id | INT UNSIGNED | NOT NULL
|
||||||
|
guild_id | INT UNSIGNED | NOT NULL
|
||||||
|
status | VARCHAR(10) | NOT NULL | DEFAULT "REMOVED" | OPTION: {"REMOVED", "ADDED"}
|
Loading…
Reference in New Issue
Block a user