Files
ms1inscription-v5/sql/MSIN-4401-hub-lien-dashboard-v2.sql

16 lines
890 B
SQL

-- MSIN-4401 — Lien retour hub V2 depuis l'espace client
-- Contexte : miroir du bouton « Mon espace client MS1 » sur le hub
-- Notes prod : idempotent (DELETE + INSERT)
DELETE FROM info
WHERE info_clef IN (
'promoteur_hub_link_dashboard',
'promoteur_hub_menu'
) AND info_prg = 'compte.php';
INSERT INTO info (info_clef, info_langue, info_texte, info_aide, info_prg, info_description, info_trie, info_actif, info_option1, info_option2, info_option3, info_creation) VALUES
('promoteur_hub_link_dashboard', 'fr', 'Tableau de bord V2', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
('promoteur_hub_link_dashboard', 'en', 'V2 dashboard', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
('promoteur_hub_menu', 'fr', 'Tableau de bord V2', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
('promoteur_hub_menu', 'en', 'V2 dashboard', '', 'compte.php', '', 0, 1, '', '', '', NOW());