Spaces:
Running
Running
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 | |
); | |