From 0c36883195c39659fd107ddb53d0bc4688a465a9 Mon Sep 17 00:00:00 2001 From: Benjamin Sonntag Date: Wed, 16 Jun 2021 16:57:33 +0200 Subject: [PATCH] fixes #444 removing comment on awstats sql dump --- awstats/awstats.sql | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/awstats/awstats.sql b/awstats/awstats.sql index cb4766c9..1936ac44 100644 --- a/awstats/awstats.sql +++ b/awstats/awstats.sql @@ -6,8 +6,7 @@ CREATE TABLE IF NOT EXISTS `aws` ( `public` INT(1) unsigned NOT NULL DEFAULT '1', `hostaliases` TEXT, PRIMARY KEY (`id`) -) Engine=MyISAM COMMENT='Statistiques web par Awstats'; - +); CREATE TABLE IF NOT EXISTS `aws_users` ( @@ -16,7 +15,7 @@ CREATE TABLE IF NOT EXISTS `aws_users` ( `pass` varchar(38) NOT NULL, PRIMARY KEY (`login`), INDEX (`uid`) -) COMMENT = 'Comptes pouvant accéder aux stats awstats.'; +); CREATE TABLE IF NOT EXISTS `aws_access` ( @@ -24,5 +23,5 @@ CREATE TABLE IF NOT EXISTS `aws_access` ( `uid` int(10) unsigned NOT NULL, `login` varchar(128) NOT NULL, INDEX (`id`) -) COMMENT = 'Qui peut accéder aux stats awstats '; +);