aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/db/schemas/mysql_schema.sql
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/db/schemas/mysql_schema.sql')
-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'
-)
+);
# --------------------------------------------------------