From 70e6af55a86561df4d4366bc225c81ed6f45895e Mon Sep 17 00:00:00 2001 From: James Atkinson Date: Wed, 20 Nov 2002 16:24:38 +0000 Subject: [PATCH] Missing semi-colon in schema file. git-svn-id: file:///svn/phpbb/trunk@3070 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/schemas/mysql_schema.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql index f421aef2ac..d0d24fd05d 100644 --- a/phpBB/install/schemas/mysql_schema.sql +++ b/phpBB/install/schemas/mysql_schema.sql @@ -237,7 +237,7 @@ CREATE TABLE phpbb_moderator_cache ( display_on_index tinyint(4) NOT NULL default '1', KEY display_on_index (display_on_index), KEY forum_id (forum_id) -) +); # -------------------------------------------------------- @@ -245,7 +245,7 @@ CREATE TABLE phpbb_moderator_cache ( # Table structure for table 'phpbb_vote_results' # CREATE TABLE phpbb_poll_results ( - poll_option_id tinyint(4) UNSIGNED NOT NULL DEFAULT '0', + poll_option_id tinyint(4) unsigned NOT NULL DEFAULT '0', topic_id mediumint(8) UNSIGNED NOT NULL, poll_option_text varchar(255) NOT NULL, poll_option_total mediumint(8) UNSIGNED NOT NULL DEFAULT '0',