edtechdemo / migrations /0000_init-db.sql
Hoang Nguyen
init app
f75d7fa
raw
history blame contribute delete
200 Bytes
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
);