diff --git a/app/models/Organisation.scala b/app/models/Organisation.scala index 18184e98..b5a8f009 100644 --- a/app/models/Organisation.scala +++ b/app/models/Organisation.scala @@ -101,7 +101,7 @@ object Organisation { val msap: Organisation = Organisation("MSAP", "Maison de services au public") val hopital: Organisation = Organisation("Hôpital", "Hôpital") val poleEmploiId: Id = Organisation.Id("Pôle emploi") - val poleEmploi: Organisation = Organisation(poleEmploiId, "Pôle emploi", "Pôle emploi") + val poleEmploi: Organisation = Organisation(poleEmploiId, "France Travail", "France Travail") val prefId: Id = Organisation.Id("Préf") val pref: Organisation = Organisation(prefId, "Préf", "Préfecture") val sousPrefId: Id = Organisation.Id("Sous-Préf") diff --git a/conf/evolutions/default/80.sql b/conf/evolutions/default/80.sql new file mode 100644 index 00000000..ef5dc62a --- /dev/null +++ b/conf/evolutions/default/80.sql @@ -0,0 +1,11 @@ +--- !Ups + +UPDATE organisation SET short_name = 'France Travail' WHERE id = 'Pôle emploi'; +UPDATE organisation SET name = 'France Travail' WHERE id = 'Pôle emploi'; + + + +--- !Downs + +UPDATE organisation SET name = 'Pôle emploi' WHERE id = 'Pôle emploi'; +UPDATE organisation SET short_name = 'Pôle emploi' WHERE id = 'Pôle emploi';