Jean-Francois Leveque

Ajout de logs

tee creeV3Country.log
create table Country (
countryId int(11) NOT NULL AUTO_INCREMENT,
countryName varchar(100) DEFAULT NULL,
......
tee creeV3Publisher+Version+Action.log
create table Publisher (
publisherId int(11) NOT NULL AUTO_INCREMENT,
validatedVersion int(11),
......
tee normalisePays.log
-- PREPARATION TABLE editeur
-- Standardisation des valeurs de PAYS dans editeur
update editeur set PAYS='Allemagne' where PAYS in ('Deutschland');
......