initial titles implementation

This commit is contained in:
wish
2022-08-11 02:50:59 +10:00
parent 37e4b42b23
commit 9fe1b1d04a
4 changed files with 68 additions and 22 deletions

11
patch-schema/titles.sql Normal file
View File

@@ -0,0 +1,11 @@
BEGIN;
CREATE TABLE IF NOT EXISTS public.titles
(
id int NOT NULL,
char_id int NOT NULL,
unlocked_at timestamp without time zone,
updated_at timestamp without time zone
);
END;