Files
ms1inscription-v5/sql/MSIN-4515-production-field-nom-equipe.sql

31 lines
924 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- MSIN-4515 — Champ production dossard : Nom déquipe
-- Prérequis : MSIN-4515-production-champs-imprimeur.sql
-- Notes : exécution UNIQUEMENT sur dev préprod ; autres env = Navicat structure + sync_static_db
-- (ici : données info seulement → sync outil après)
INSERT INTO info (
info_clef,
info_langue,
info_texte,
info_aide,
info_prg
)
SELECT
src.info_clef,
src.info_langue,
src.info_texte,
src.info_aide,
'compte.php'
FROM (
SELECT 'bib_v5_production_field_nom_equipe' AS info_clef, 'fr' AS info_langue,
'Nom déquipe' AS info_texte, '' AS info_aide
UNION ALL SELECT 'bib_v5_production_field_nom_equipe', 'en', 'Team name', ''
) src
WHERE NOT EXISTS (
SELECT 1
FROM info current_info
WHERE current_info.info_clef = src.info_clef
AND current_info.info_langue = src.info_langue
AND current_info.info_prg = 'compte.php'
);