diff options
author | the_systech <the_systech@users.sourceforge.net> | 2001-07-31 18:33:39 +0000 |
---|---|---|
committer | the_systech <the_systech@users.sourceforge.net> | 2001-07-31 18:33:39 +0000 |
commit | b1a20d6123164a2401dd3f243ba85337ce2a915a (patch) | |
tree | d9393ec9190755b0d647eb33f3c37df09d1bf029 /phpBB/db | |
parent | 44fa3624a75dae0963739c7c812c517b1bf56d0a (diff) | |
download | forums-b1a20d6123164a2401dd3f243ba85337ce2a915a.tar forums-b1a20d6123164a2401dd3f243ba85337ce2a915a.tar.gz forums-b1a20d6123164a2401dd3f243ba85337ce2a915a.tar.bz2 forums-b1a20d6123164a2401dd3f243ba85337ce2a915a.tar.xz forums-b1a20d6123164a2401dd3f243ba85337ce2a915a.zip |
Fixed missing semicolon
git-svn-id: file:///svn/phpbb/trunk@769 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/db')
-rw-r--r-- | phpBB/db/mysql_schema.sql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/db/mysql_schema.sql b/phpBB/db/mysql_schema.sql index a2559de378..39738c97f5 100644 --- a/phpBB/db/mysql_schema.sql +++ b/phpBB/db/mysql_schema.sql @@ -40,8 +40,8 @@ CREATE TABLE phpbb_user_group ( # # Table structure for table 'phpbb_groups' # - DROP TABLE IF EXISTS phpbb_groups; + CREATE TABLE phpbb_groups ( group_id int(11) NOT NULL auto_increment, group_type tinyint(4) DEFAULT '1' NOT NULL, @@ -371,14 +371,14 @@ CREATE TABLE `phpbb_themes` ( `span_class3` varchar(25) default NULL, PRIMARY KEY (`themes_id`), KEY `themes_name` (`themes_name`) -) +); # -------------------------------------------------------- # # Table structure for table 'phpbb_themes_name' # -DROP TABLE IF EXISTS phpbb_themes_name; +# DROP TABLE IF EXISTS phpbb_themes_name; CREATE TABLE phpbb_themes_name ( themes_id int(11) DEFAULT '0' NOT NULL, |