17 lines
912 B
SQL
17 lines
912 B
SQL
-- MSIN-4459 — Liste inscriptions : nom d'équipe + libellé coéquipier
|
|
-- Prérequis : aucun
|
|
-- Idempotent (DELETE + INSERT). Compte.php (contexte AJAX / fiche gestion).
|
|
|
|
DELETE FROM info
|
|
WHERE info_prg = 'compte.php'
|
|
AND info_clef IN (
|
|
'inscr_gestion_list_team_name',
|
|
'inscr_gestion_list_teammate'
|
|
);
|
|
|
|
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
|
|
('inscr_gestion_list_team_name', 'fr', 'Nom d\'équipe : %s', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_list_team_name', 'en', 'Team name: %s', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_list_teammate', 'fr', 'Coéquipier', '', 'compte.php', '', 0, 1, '', '', '', NOW()),
|
|
('inscr_gestion_list_teammate', 'en', 'Teammate', '', 'compte.php', '', 0, 1, '', '', '', NOW());
|