diff options
| author | James Atkinson <thefinn@users.sourceforge.net> | 2002-11-20 16:24:38 +0000 |
|---|---|---|
| committer | James Atkinson <thefinn@users.sourceforge.net> | 2002-11-20 16:24:38 +0000 |
| commit | 70e6af55a86561df4d4366bc225c81ed6f45895e (patch) | |
| tree | 2fb24aecd4f98a793331e92204f020a7878ee05d /phpBB | |
| parent | e0ea770c40eae1f28e7248c0b204cf71dac18c87 (diff) | |
| download | forums-70e6af55a86561df4d4366bc225c81ed6f45895e.tar forums-70e6af55a86561df4d4366bc225c81ed6f45895e.tar.gz forums-70e6af55a86561df4d4366bc225c81ed6f45895e.tar.bz2 forums-70e6af55a86561df4d4366bc225c81ed6f45895e.tar.xz forums-70e6af55a86561df4d4366bc225c81ed6f45895e.zip | |
Missing semi-colon in schema file.
git-svn-id: file:///svn/phpbb/trunk@3070 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
| -rw-r--r-- | phpBB/install/schemas/mysql_schema.sql | 4 |
1 files 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', |
