Files
metabuilder/frontends/postgres/migrations/0000_init-db.sql
2026-03-09 22:30:41 +00:00

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
);