- Fix entry list
- display time correctly
- display expired entries
- error on no entry return
- settings command
- guild db field
create table if not exists guilds
(
id integer primary key autoincrement not null,
guild_id bigint not null,
reminder_master_role bigint not null,
reminder_channel bigint not null,
);
- remind option (either null for no remind, or )
- description
- target user (can only be used by reminder_master, defaults to self)
create table if not exists reminders
(
id integer primary key autoincrement not null,
user_id bigint not null, -- Should I have a users table?
end_time datetime not null,
description text not null,
remind_time datetime, -- Optional
active boolean not null,
);
creates way too many API requests, either rework or make an alternative
- fetch messages from dm
- send messages