mirror of
https://github.com/Mezeporta/Erupe.git
synced 2025-12-14 07:55:33 +01:00
initial stamp implementation
This commit is contained in:
13
patch-schema/stamps.sql
Normal file
13
patch-schema/stamps.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user