mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
7 lines
186 B
SQL
7 lines
186 B
SQL
CREATE TABLE "counter" (
|
|
"id" serial PRIMARY KEY NOT NULL,
|
|
"count" integer DEFAULT 0,
|
|
"updated_at" timestamp DEFAULT now() NOT NULL,
|
|
"created_at" timestamp DEFAULT now() NOT NULL
|
|
);
|