- sql/046: QCT QuantaMesh T3048-LY8 direct image injection - sql/050: Allied Telesis 3/3 (AT-x530-28GSX, AT-x530L-52GPX, AT-x950-28XSQ) via alliedtelesis.com Drupal static files CDN (og:image, all 200 PNG) - CHANGELOG: document filter pattern fixes + all 6 new vendor migrations (Moxa/UfiSpace/Brocade/NVIDIA/Allied Telesis — 19 new images total)
15 lines
947 B
SQL
15 lines
947 B
SQL
-- Migration 046 — QCT / Quanta Cloud Technology product images (direct URL injection)
|
|
--
|
|
-- QCT T3048-LY8: og:image accessible via plain HTTP on qct.io
|
|
-- URL: qct.io/product/index/Networking/Ethernet-Switch/T3000-Series/QuantaMesh-T3048-LY8
|
|
-- og:image: qct.io/upload/website/product/gallery/normal/NetworkSwitch-QuantaMesh-T3048-LY8_FrontView02-740x460_16111812291.png
|
|
--
|
|
-- T7032-IX1 and T7064-*/T9032-* have no accessible og:image (JS-rendered or no dedicated page).
|
|
|
|
UPDATE switches
|
|
SET image_url = 'https://www.qct.io/upload/website/product/gallery/normal/NetworkSwitch-QuantaMesh-T3048-LY8_FrontView02-740x460_16111812291.png',
|
|
product_page_url = COALESCE(product_page_url, 'https://www.qct.io/product/index/Networking/Ethernet-Switch/T3000-Series/QuantaMesh-T3048-LY8'),
|
|
assets_scraped_at = NOW()
|
|
WHERE model = 'QuantaMesh T3048-LY8'
|
|
AND vendor_id = (SELECT id FROM vendors WHERE slug = 'quanta-cloud-technology');
|