1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-01-19 15:17:16 +01:00

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
This commit is contained in:
James Atkinson 2001-04-29 20:42:27 +00:00
parent 1b95e1ecb1
commit 085a3b07e9

View File

@ -276,7 +276,7 @@ CREATE TABLE phpbb_themes (
# #
CREATE TABLE phpbb_themes_name ( CREATE TABLE phpbb_themes_name (
themes_id int(11), themes_id int(11) NOT NULL,
tr_color1_name varchar(25), tr_color1_name varchar(25),
tr_color2_name varchar(25), tr_color2_name varchar(25),
tr_color3_name varchar(25), tr_color3_name varchar(25),