Spaces:
Running
Running
File size: 200 Bytes
f75d7fa |
1 2 3 4 5 6 7 |
CREATE TABLE IF NOT EXISTS "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
);
|