-- 0026_lostfound_seed.sql
-- Object-creator task #26 (9 Jul 2026): hr_lost_found sudah ada sejak
-- 0008_hr_init, dan 0017_seed_dummy_full sudah mengisi 2 baris (status
-- stored & claimed). Migrasi ini HANYA menambah 2 baris dummy lagi supaya
-- halaman lost-found.php langsung menampilkan variasi status yang belum
-- terwakili (disposed, handed_to_authority) — bukan seed awal (tabel tidak
-- kosong), murni pelengkap demo. property_id/location_id/found_by memakai
-- nilai yang sudah valid & terpakai di seed lain (properti 1, lokasi 1/8,
-- user 525/529) — tidak mengarang FK baru.
INSERT INTO hr_lost_found (property_id, item, location_id, found_by, stored_at, returned_to, status) VALUES
(1, 'Payung lipat hitam (DUMMY demo)', 1, 525, 'Loker HRD (DUMMY demo)', NULL, 'disposed'),
(1, 'Charger HP tertinggal di lobby (DUMMY demo)', 8, 529, NULL, NULL, 'handed_to_authority');
