prices
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
0 rows where product_id = "PRD_3PNKPYVFTAR0"
This data as json
0 records
CREATE TABLE prices (
id TEXT PRIMARY KEY,
product_id TEXT NOT NULL,
amount INTEGER NOT NULL,
start_at TEXT NOT NULL,
FOREIGN KEY (product_id) REFERENCES products(id)
);
CREATE UNIQUE INDEX idx_prices_product ON prices(product_id);