X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=modules%2Ffusionax%2FFormations.sql;h=d48f18c5b9742f5557502d7634c79c123f27fa2d;hb=22f043e40dbab2dccdc909151402c1ff53baf925;hp=7d2854a8a51e7476fc88659041e5e08a654460e4;hpb=32d8754be017db3aa656812fca2a92704ebe29ae;p=platal.git diff --git a/modules/fusionax/Formations.sql b/modules/fusionax/Formations.sql index 7d2854a..d48f18c 100644 --- a/modules/fusionax/Formations.sql +++ b/modules/fusionax/Formations.sql @@ -3,9 +3,9 @@ DROP TABLE IF EXISTS `fusionax_formations`; CREATE TABLE IF NOT EXISTS `fusionax_formations` ( - `FO` varbinary(2) NOT NULL COMMENT 'Vaut toujours FO pour cette table', - `id_ancien` varbinary(8) NOT NULL COMMENT 'Id unique de l''ancien', - `Intitule_formation` varchar(60) collate utf8_unicode_ci NOT NULL COMMENT 'Intitulé de la formation', + `FO` CHAR(2) NOT NULL COMMENT 'Vaut toujours FO pour cette table', + `id_ancien` VARCHAR(8) NOT NULL COMMENT 'Id unique de l''ancien', + `Intitule_formation` VARCHAR(60) collate utf8_unicode_ci NOT NULL COMMENT 'Intitulé de la formation', `Date_maj` DATE NOT NULL COMMENT 'Date de mise à jour de ces informations', PRIMARY KEY (`id_ancien`, `Intitule_formation`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;