-- Gold Jewellery Software - Login page support contacts
-- Migration 012: two settings keys for the "Support / Need help?" panel
-- on the login page. Both default to empty — each row only renders on
-- the login page if its value is actually set, so leaving either blank
-- simply hides it rather than showing a broken link.
-- Edit them under Settings > General once logged in.
USE gold_jewellery;

INSERT INTO settings (setting_key, setting_value) VALUES
 ('support_phone', ''),
 ('support_email', 'promaxsoftwares@gmail.com')
ON DUPLICATE KEY UPDATE setting_key = setting_key;
