From f0d7e8d57c07240d29c1b2eb7747b3b2c5a0157a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Serman?= Date: Fri, 24 Aug 2012 13:41:07 +0000 Subject: [PATCH] Added one of the two required tables for piwik feature --- install/mysql.sql | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/install/mysql.sql b/install/mysql.sql index d0a37b8d..3c6b7756 100644 --- a/install/mysql.sql +++ b/install/mysql.sql @@ -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 ; +