-- Gold Jewellery Software - Vendor / Branding settings
-- Migration 013: keys behind the Developer-only "Vendor / Branding"
-- tab on /data-tools. These are the VENDOR's details (ProMax), as
-- opposed to Settings > General which holds the SHOP's details.
--
-- Note: support_phone and support_email already exist (migration 012).
-- They move from Settings > General to this vendor tab — same keys,
-- same values, just edited in the place they actually belong now, so
-- there's no duplicate screen editing the same setting.
USE gold_jewellery;

INSERT INTO settings (setting_key, setting_value) VALUES
 ('vendor_logo_path', ''),
 ('licensed_customer_name', ''),
 ('whatsapp_renewal_number', ''),
 ('license_contact_email', 'promaxsoftwares@gmail.com')
ON DUPLICATE KEY UPDATE setting_key = setting_key;
