diff options
author | James Atkinson <thefinn@users.sourceforge.net> | 2001-04-29 20:42:27 +0000 |
---|---|---|
committer | James Atkinson <thefinn@users.sourceforge.net> | 2001-04-29 20:42:27 +0000 |
commit | 085a3b07e9f3144e0c060c14ebcbec1dd7b45a5c (patch) | |
tree | b40f4147b4b8920840eb12b5d2fb16e2cdc4b23d /phpBB | |
parent | 1b95e1ecb1f51e294aaeed25382df10d1d1ecc7f (diff) | |
download | forums-085a3b07e9f3144e0c060c14ebcbec1dd7b45a5c.tar forums-085a3b07e9f3144e0c060c14ebcbec1dd7b45a5c.tar.gz forums-085a3b07e9f3144e0c060c14ebcbec1dd7b45a5c.tar.bz2 forums-085a3b07e9f3144e0c060c14ebcbec1dd7b45a5c.tar.xz forums-085a3b07e9f3144e0c060c14ebcbec1dd7b45a5c.zip |
Fixed theme_id field so its not null. schemea would not work on mysql 3.23 with theme_id primary key and nullable
git-svn-id: file:///svn/phpbb/trunk@217 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/db/mysql_schema.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/db/mysql_schema.sql b/phpBB/db/mysql_schema.sql index 82519c2ed3..f2010707d8 100644 --- a/phpBB/db/mysql_schema.sql +++ b/phpBB/db/mysql_schema.sql @@ -276,7 +276,7 @@ CREATE TABLE phpbb_themes ( # CREATE TABLE phpbb_themes_name ( - themes_id int(11), + themes_id int(11) NOT NULL, tr_color1_name varchar(25), tr_color2_name varchar(25), tr_color3_name varchar(25), |