ClanStat/sql/table.sql

9 lines
150 B
PL/PgSQL

BEGIN;
CREATE TABLE "public"."wins" (
"data" JSON NOT NULL,
"timestamp" Timestamp Without Time Zone DEFAULT CURRENT_TIMESTAMP );
;
COMMIT;