From 085a3b07e9f3144e0c060c14ebcbec1dd7b45a5c Mon Sep 17 00:00:00 2001 From: James Atkinson Date: Sun, 29 Apr 2001 20:42:27 +0000 Subject: [PATCH] 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 --- phpBB/db/mysql_schema.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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),