Store when barcode was last scanned
All checks were successful
Docker Image CI / build (push) Successful in 14m3s

This commit is contained in:
2024-10-05 19:15:21 +01:00
parent 68eff11fdc
commit eee2c201fa
4 changed files with 21 additions and 1 deletions

View File

@ -0,0 +1,7 @@
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;