mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-13 15:34:38 +01:00
13 lines
312 B
PL/PgSQL
13 lines
312 B
PL/PgSQL
BEGIN;
|
|
|
|
CREATE TABLE IF NOT EXISTS public.stamps (
|
|
character_id integer PRIMARY KEY,
|
|
hl_total integer DEFAULT 0,
|
|
hl_redeemed integer DEFAULT 0,
|
|
hl_next timestamp without time zone,
|
|
ex_total integer DEFAULT 0,
|
|
ex_redeemed integer DEFAULT 0,
|
|
ex_next timestamp without time zone
|
|
);
|
|
|
|
END; |