Added one of the two required tables for piwik feature

This commit is contained in:
François Serman 2012-08-24 13:41:07 +00:00
parent 8487d68bb1
commit f0d7e8d57c
1 changed files with 13 additions and 0 deletions

View File

@ -685,3 +685,16 @@ select distinct concat(`m`.`login`,'@',`v`.`value`) AS `mail`,
`m`.`mail` AS `alias`
from ((`membres` `m` join `variable` `v`) join `domaines` `d`)
where (`v`.`name` = 'mailname_bounce');
--
-- Structure de la table `piwik_users`
--
CREATE TABLE IF NOT EXISTS `piwik_users` (
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`uid` INT NOT NULL ,
`login` VARCHAR( 255 ) NOT NULL ,
`created_date` TIMESTAMP NOT NULL
) ENGINE = MYISAM ;