aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/db
diff options
context:
space:
mode:
authorJames Atkinson <thefinn@users.sourceforge.net>2001-05-10 18:14:02 +0000
committerJames Atkinson <thefinn@users.sourceforge.net>2001-05-10 18:14:02 +0000
commit3fb9761959600c7a471e66b5e3213d3036eadddf (patch)
treeb4e5dab371939064fdd249546f754b216f0380f4 /phpBB/db
parent3ee09c613c5fbdbac66cfbd3d3ff912df6104ad5 (diff)
downloadforums-3fb9761959600c7a471e66b5e3213d3036eadddf.tar
forums-3fb9761959600c7a471e66b5e3213d3036eadddf.tar.gz
forums-3fb9761959600c7a471e66b5e3213d3036eadddf.tar.bz2
forums-3fb9761959600c7a471e66b5e3213d3036eadddf.tar.xz
forums-3fb9761959600c7a471e66b5e3213d3036eadddf.zip
Made the schema work with MySQL 3.22
git-svn-id: file:///svn/phpbb/trunk@268 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/db')
-rw-r--r--phpBB/db/mysql_schema.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/db/mysql_schema.sql b/phpBB/db/mysql_schema.sql
index f2a65c745d..2431a37d88 100644
--- a/phpBB/db/mysql_schema.sql
+++ b/phpBB/db/mysql_schema.sql
@@ -115,7 +115,7 @@ DROP TABLE IF EXISTS phpbb_forums;
CREATE TABLE phpbb_forums (
forum_id int(10) NOT NULL auto_increment,
- cat_id int(10),
+ cat_id int(10) NOT NULL,
forum_name varchar(150),
forum_desc text,
forum_access tinyint(3),
@@ -264,7 +264,7 @@ DROP TABLE IF EXISTS phpbb_themes;
CREATE TABLE phpbb_themes (
themes_id int(11) NOT NULL auto_increment,
- themes_name varchar(30),
+ themes_name varchar(30) NOT NULL,
head_stylesheet varchar(100),
body_background varchar(100),
body_bgcolor varchar(6),