6 lines
157 B
SQL
6 lines
157 B
SQL
CREATE TABLE "stats" (
|
|
"id" text PRIMARY KEY DEFAULT 'serverStats' NOT NULL,
|
|
"build" integer DEFAULT 1 NOT NULL,
|
|
"last_update" timestamp DEFAULT now()
|
|
);
|