10 lines
367 B
SQL
10 lines
367 B
SQL
CREATE TABLE "amazon_poll_log" (
|
|
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
|
|
"started_at" timestamp with time zone DEFAULT now() NOT NULL,
|
|
"finished_at" timestamp with time zone,
|
|
"orders_found" integer DEFAULT 0 NOT NULL,
|
|
"orders_imported" integer DEFAULT 0 NOT NULL,
|
|
"error" text,
|
|
"created_at" timestamp with time zone DEFAULT now() NOT NULL
|
|
);
|