Get orders import started, get all needed products imported

This commit is contained in:
2025-01-25 21:43:31 -05:00
parent b1a5671531
commit cdce12e9fb
2 changed files with 146 additions and 35 deletions

View File

@@ -122,7 +122,6 @@ CREATE TABLE orders (
billing_address TEXT,
canceled BOOLEAN DEFAULT false,
FOREIGN KEY (pid) REFERENCES products(pid),
FOREIGN KEY (SKU) REFERENCES products(SKU),
INDEX idx_order_number (order_number),
INDEX idx_customer (customer),
INDEX idx_date (date),