(Reminders): Created reminders module and system.

This commit is contained in:
2021-09-15 19:58:32 +03:00
parent bac72194a3
commit 2acef999c5
7 changed files with 452 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
from data import RowTable
reminders = RowTable(
'reminders',
('reminderid', 'userid', 'remind_at', 'content', 'message_link', 'interval', 'created_at'),
'reminderid'
)