mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-13 15:34:38 +01:00
11 lines
194 B
PL/PgSQL
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; |