6 lines
166 B
SQL
6 lines
166 B
SQL
CREATE TABLE "serverStats" (
|
|
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
|
|
"build" integer DEFAULT 1 NOT NULL,
|
|
"lastUpdate" timestamp DEFAULT now()
|
|
);
|