stock.geolock.fr/apps/api/drizzle/0008_striped_morg.sql
2026-02-24 16:10:30 +00:00

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
);