Some checks failed
QA Gate (P0/P1) / Test affected app (pull_request) Has been cancelled
migration 0025: 2 yeni kanonik kova (jant-lastik #19, aksesuar #20). lexicon: jant/lastik/tekerlek/göbek→jant-lastik, aksesuar→aksesuar (catch-all, en düşük öncelik). Kullanıcı kararları: Hava Sistemi→Soğutma (hava weak), Bakım parçaları→Filtreler (bakim weak). "hava yastığı"→direksiyon için yastigi strong'a alındı. 16/16 test. Yorumlar 18→20 kova güncellendi. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
8 lines
404 B
SQL
8 lines
404 B
SQL
-- Two more canonical top buckets the OEM catalogs need but the retail-derived
|
|
-- seed lacked: "Jant ve Lastik" (pcat "Jantlar, Lastikler" appears on ~every
|
|
-- vehicle) and "Aksesuar". Idempotent via the unique slug.
|
|
INSERT INTO "canonical_categories" ("slug", "name", "sort_order") VALUES
|
|
('jant-lastik', 'Jant ve Lastik', 19),
|
|
('aksesuar', 'Aksesuar', 20)
|
|
ON CONFLICT ("slug") DO NOTHING;
|