implement return course

This commit is contained in:
wish
2022-08-26 21:02:31 +10:00
parent 20c6ad2c8c
commit dd1460b74b
3 changed files with 30 additions and 10 deletions

9
patch-schema/return.sql Normal file
View File

@@ -0,0 +1,9 @@
BEGIN;
ALTER TABLE IF EXISTS public.users
ADD COLUMN IF NOT EXISTS last_login timestamp without time zone;
ALTER TABLE IF EXISTS public.users
ADD COLUMN IF NOT EXISTS return_expires timestamp without time zone;
END;