groceries/Groceries.Data/Migrations/20241005180119_item_barcodes_last_scanned_at.sql
James Chapman eee2c201fa
All checks were successful
Docker Image CI / build (push) Successful in 14m3s
Store when barcode was last scanned
2024-10-05 19:15:21 +01:00

8 lines
272 B
SQL

ALTER TABLE item_barcodes
ADD COLUMN IF NOT EXISTS last_scanned_at timestamptz NOT NULL DEFAULT current_timestamp;
UPDATE item_barcodes
SET last_scanned_at = created_at
FROM item_purchases
WHERE item_barcodes.item_id = item_purchases.item_id AND is_last_purchase = true;