|
From: Bart v. B. <ba...@us...> - 2001-12-10 21:53:31
|
Update of /cvsroot/phpbb/phpBB2/db/schemas
In directory usw-pr-cvs1:/tmp/cvs-serv22409
Modified Files:
mysql_schema.sql postgres_schema.sql oracle_schema.sql
Log Message:
Fix for some small problems with upgrade
Index: mysql_schema.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/schemas/mysql_schema.sql,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** mysql_schema.sql 2001/11/30 23:15:53 1.5
--- mysql_schema.sql 2001/12/10 21:53:27 1.6
***************
*** 473,479 ****
user_viewemail tinyint(1),
user_attachsig tinyint(1),
! user_allowhtml tinyint(1),
! user_allowbbcode tinyint(1),
! user_allowsmile tinyint(1),
user_allowavatar tinyint(1) DEFAULT '1' NOT NULL,
user_allow_pm tinyint(1) DEFAULT '1' NOT NULL,
--- 473,479 ----
user_viewemail tinyint(1),
user_attachsig tinyint(1),
! user_allowhtml tinyint(1) DEFAULT '1',
! user_allowbbcode tinyint(1) DEFAULT '1',
! user_allowsmile tinyint(1) DEFAULT '1',
user_allowavatar tinyint(1) DEFAULT '1' NOT NULL,
user_allow_pm tinyint(1) DEFAULT '1' NOT NULL,
Index: postgres_schema.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/schemas/postgres_schema.sql,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** postgres_schema.sql 2001/11/29 09:57:29 1.5
--- postgres_schema.sql 2001/12/10 21:53:27 1.6
***************
*** 468,474 ****
user_viewemail int2,
user_attachsig int2,
! user_allowhtml int2,
! user_allowbbcode int2,
! user_allowsmile int2,
user_allow_pm int2 DEFAULT '1' NOT NULL,
user_allowavatar int2 DEFAULT '1' NOT NULL,
--- 468,474 ----
user_viewemail int2,
user_attachsig int2,
! user_allowhtml int2 DEFAULT '1',
! user_allowbbcode int2 DEFAULT '1',
! user_allowsmile int2 DEFAULT '1',
user_allow_pm int2 DEFAULT '1' NOT NULL,
user_allowavatar int2 DEFAULT '1' NOT NULL,
Index: oracle_schema.sql
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/db/schemas/oracle_schema.sql,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** oracle_schema.sql 2001/11/24 17:17:32 1.2
--- oracle_schema.sql 2001/12/10 21:53:27 1.3
***************
*** 455,461 ****
user_viewemail number(4),
user_attachsig number(4),
! user_allowhtml number(4),
! user_allowbbcode number(4),
! user_allowsmile number(4),
user_allow_pm number(4) DEFAULT '1' NOT NULL,
user_allowavatar number(4) DEFAULT '1' NOT NULL,
--- 455,461 ----
user_viewemail number(4),
user_attachsig number(4),
! user_allowhtml number(4) DEFAULT '1',
! user_allowbbcode number(4) DEFAULT '1',
! user_allowsmile number(4) DEFAULT '1',
user_allow_pm number(4) DEFAULT '1' NOT NULL,
user_allowavatar number(4) DEFAULT '1' NOT NULL,
|