Files
Erupe/patch-schema/titles.sql
2022-08-11 02:50:59 +10:00

11 lines
194 B
PL/PgSQL

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;