Files
postgres/migrations/0000_init-db.sql
2026-01-08 01:04:26 +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
);