aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authordougk_ff7 <dougk_ff7@users.sourceforge.net>2002-06-27 19:55:26 +0000
committerdougk_ff7 <dougk_ff7@users.sourceforge.net>2002-06-27 19:55:26 +0000
commit46b8fc7cfe07f6bc85c8d3c5489a99970929acda (patch)
treef5491c5c2cc5eb1a6589901c090550222447ddac /phpBB
parent3a233ee6bb329482038d5fc5b3e2a3a4bfe3c973 (diff)
downloadforums-46b8fc7cfe07f6bc85c8d3c5489a99970929acda.tar
forums-46b8fc7cfe07f6bc85c8d3c5489a99970929acda.tar.gz
forums-46b8fc7cfe07f6bc85c8d3c5489a99970929acda.tar.bz2
forums-46b8fc7cfe07f6bc85c8d3c5489a99970929acda.tar.xz
forums-46b8fc7cfe07f6bc85c8d3c5489a99970929acda.zip
Ok, a schema fix... Not a terrible problem....
git-svn-id: file:///svn/phpbb/trunk@2646 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/db/schemas/mysql_schema.sql8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/db/schemas/mysql_schema.sql b/phpBB/db/schemas/mysql_schema.sql
index 2fcefb6bcc..3bf963785a 100644
--- a/phpBB/db/schemas/mysql_schema.sql
+++ b/phpBB/db/schemas/mysql_schema.sql
@@ -14,7 +14,7 @@ CREATE TABLE phpbb_auth_groups (
forum_id mediumint(8) unsigned NOT NULL default '0',
auth_option_id smallint(5) unsigned NOT NULL default '0',
auth_allow_deny tinyint(4) NOT NULL default '1'
-)
+);
#
@@ -24,7 +24,7 @@ CREATE TABLE phpbb_auth_options (
auth_option_id tinyint(4) NOT NULL auto_increment,
auth_option char(20) NOT NULL default '',
PRIMARY KEY (auth_option_id,auth_option)
-)
+);
# --------------------------------------------------------
@@ -36,7 +36,7 @@ CREATE TABLE phpbb_auth_prefetch (
forum_id mediumint(8) unsigned NOT NULL default '0',
auth_option_id smallint(5) unsigned NOT NULL default '0',
auth_allow_deny tinyint(4) NOT NULL default '1')
-)
+);
# --------------------------------------------------------
@@ -48,7 +48,7 @@ CREATE TABLE phpbb_auth_users (
forum_id mediumint(8) unsigned NOT NULL default '0',
auth_option_id smallint(5) unsigned NOT NULL default '0',
auth_allow_deny tinyint(4) NOT NULL default '1'
-)
+);
# --------------------------------------------------------