Add change
This commit is contained in:
parent
886f480754
commit
86e6e59831
9
scripts/build/_sql/CustomerFilters.sql
Normal file
9
scripts/build/_sql/CustomerFilters.sql
Normal 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'
|
@ -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))';
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user