product_images
1 row where product_id = "1oz28ocbcl"
This data as json, CSV (advanced)
Suggested facets: downloaded_at (date)
| id ▼ | product_id | size | remote_url | local_path | downloaded_at | file_size | http_status | width | height | md5_hash |
|---|---|---|---|---|---|---|---|---|---|---|
| 479 | Classic Orchid Blend 1oz28ocbcl | original | https://www.bonitablomster.no/images/products/1oz28ocbcl.jpg | data/images/original/1oz28ocbcl.jpg | 2026-02-03 22:29:16.173786 | 97187 | 200 | 758 | 758 | 3b10a9de5866cd2f345f66cebe20c0a2 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE product_images (
id INTEGER PRIMARY KEY AUTOINCREMENT,
product_id TEXT NOT NULL,
size TEXT NOT NULL, -- 'large', 'medium', 'small'
remote_url TEXT,
local_path TEXT,
downloaded_at TIMESTAMP,
file_size INTEGER,
http_status INTEGER, width INTEGER, height INTEGER, md5_hash TEXT,
FOREIGN KEY (product_id) REFERENCES products(id),
UNIQUE(product_id, size)
);
CREATE INDEX idx_product_images_product ON product_images(product_id);