Add change

This commit is contained in:
Michael RICOIS 2016-02-05 10:30:26 +00:00
parent 886f480754
commit 86e6e59831
3 changed files with 14 additions and 1 deletions

View File

@ -0,0 +1,9 @@
CREATE TABLE `customer_filters` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`idClient` int(11) NOT NULL COMMENT 'ID du client',
`idService` int(11) NOT NULL COMMENT 'ID du service',
`filterName` varchar(20) NOT NULL COMMENT 'Nom du filtre',
`filterValue` longtext NOT NULL COMMENT 'Valeurs prédéfinies du filtre',
`dateAdded` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Filtre prédéfinie sur le compte client'

View File

@ -15,3 +15,7 @@ CREATE TABLE IF NOT EXISTS `enrichissement_identifiants` (
`fichier` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
ALTER TABLE `enrichissement_identifiants` ADD `fichierParams` VARCHAR(100) NOT NULL COMMENT 'Paramètres pour le fichier en sortie (type, separator, encoding))' AFTER `fichier`;
ALTER TABLE `enrichissement_identifiants` CHANGE `fichierParams` `fichierParams` VARCHAR(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT 'Paramètres pour le fichier en sortie (type, separator, encoding))';

View File

@ -179,7 +179,7 @@ foreach ( $dataProfil as $item ) {
// --- Construction de la requete SQL
if ( array_key_exists('sql', $field) ) {
$columns[] = $field['sql'];
$columns[] = new Zend_Db_Expr($field['sql']);
} else {
$columns[] = $field['column'].' AS '.$item;
}