From da057a00409f8a04549be31f197bc44b57bffacc Mon Sep 17 00:00:00 2001 From: mykola2312 <49044616+mykola2312@users.noreply.github.com> Date: Sat, 2 Mar 2024 00:27:46 +0200 Subject: [PATCH] add reminder to add initiated dialogs into table --- migrations/1_init.sql | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/migrations/1_init.sql b/migrations/1_init.sql index 1be674a..ebcab32 100644 --- a/migrations/1_init.sql +++ b/migrations/1_init.sql @@ -47,4 +47,6 @@ AFTER UPDATE OF is_approved ON "request" WHEN new.is_approved = 1 BEGIN UPDATE user SET can_download = 1 WHERE user.id = new.requested_by; -END; \ No newline at end of file +END; + +-- TODO: add dialog start table \ No newline at end of file