From bcac060163505cbf8254253703f5566ebcf959de Mon Sep 17 00:00:00 2001 From: 8n-tech <8n-tech@users.noreply.github.com> Date: Thu, 14 May 2015 11:15:09 +1000 Subject: [PATCH] #494 Added missing email field. --- install.sql | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/install.sql b/install.sql index 63a8e6c2..ab88dddd 100644 --- a/install.sql +++ b/install.sql @@ -309,7 +309,7 @@ CREATE TABLE IF NOT EXISTS `ban_appeals` ( -- Table structure for table `post_clean` -- -CREATE TABLE `post_clean` ( +CREATE TABLE IF NOT EXISTS `post_clean` ( `clean_id` int(11) unsigned NOT NULL AUTO_INCREMENT, `post_id` int(11) unsigned NOT NULL, `board_id` varchar(58) NOT NULL, @@ -327,7 +327,7 @@ CREATE TABLE `post_clean` ( -- Table structure for table `board_tags` -- -CREATE TABLE `board_tags` ( +CREATE TABLE IF NOT EXISTS `board_tags` ( `id` int(11) NOT NULL AUTO_INCREMENT, `uri` varchar(30) DEFAULT NULL, `tag` varchar(255) DEFAULT NULL, @@ -340,7 +340,7 @@ CREATE TABLE `board_tags` ( -- Table structure for table `tor_cookies` -- -CREATE TABLE `tor_cookies` ( +CREATE TABLE IF NOT EXISTS `tor_cookies` ( `cookie` varchar(255) NOT NULL, `created` datetime NOT NULL, `uses` tinyint(3) unsigned DEFAULT '0', @@ -353,7 +353,7 @@ CREATE TABLE `tor_cookies` ( -- Table structure for table `dnsbl_bypass` -- -CREATE TABLE `dnsbl_bypass` ( +CREATE TABLE IF NOT EXISTS `dnsbl_bypass` ( `ip` varchar(255) NOT NULL, `created` datetime DEFAULT NULL, PRIMARY KEY (`ip`) @@ -365,7 +365,7 @@ CREATE TABLE `dnsbl_bypass` ( -- Table structure for table `filters` -- -CREATE TABLE `filters` ( +CREATE TABLE IF NOT EXISTS `filters` ( `id` int(11) NOT NULL AUTO_INCREMENT, `type` varchar(255) DEFAULT NULL, `reason` text, @@ -380,7 +380,7 @@ CREATE TABLE `filters` ( -- Table structure for table `pages` -- -CREATE TABLE `pages` ( +CREATE TABLE IF NOT EXISTS `pages` ( `id` int(11) NOT NULL AUTO_INCREMENT, `board` varchar(255) DEFAULT NULL, `name` varchar(255) NOT NULL, @@ -397,7 +397,7 @@ CREATE TABLE `pages` ( -- Table structure for `board_stts` -- -CREATE TABLE IF NOT EXISTS ``board_stats`` ( +CREATE TABLE IF NOT EXISTS `board_stats` ( `stat_uri` VARCHAR(58) NOT NULL, `stat_hour` INT(11) UNSIGNED NOT NULL, `post_count` INT(11) UNSIGNED NULL,