|
From: OryNider <ory...@us...> - 2008-01-16 04:04:09
|
Update of /cvsroot/mxbb/core/install/schemas In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv19994 Modified Files: Tag: core28x mysql_schema_install.sql mysql_schema_upgrade_to_2.8.1.sql postgres_schema_install.sql Log Message: sincronization with 2.9.2 Index: postgres_schema_install.sql =================================================================== RCS file: /cvsroot/mxbb/core/install/schemas/postgres_schema_install.sql,v retrieving revision 1.3.2.1 retrieving revision 1.3.2.2 diff -C2 -d -r1.3.2.1 -r1.3.2.2 *** postgres_schema_install.sql 12 Aug 2007 20:48:22 -0000 1.3.2.1 --- postgres_schema_install.sql 16 Jan 2008 04:04:05 -0000 1.3.2.2 *************** *** 573,577 **** "portal_recached" VARCHAR(255) NOT NULL DEFAULT '', "mod_rewrite" SMALLINT NOT NULL DEFAULT '0', ! "portal_backend" VARCHAR(255) NULL DEFAULT 'phpBB2', "portal_status" SMALLINT NOT NULL DEFAULT '1', "disabled_message" VARCHAR(255) NULL DEFAULT '', --- 573,577 ---- "portal_recached" VARCHAR(255) NOT NULL DEFAULT '', "mod_rewrite" SMALLINT NOT NULL DEFAULT '0', ! "portal_backend" VARCHAR(255) NULL DEFAULT 'phpbb2', "portal_status" SMALLINT NOT NULL DEFAULT '1', "disabled_message" VARCHAR(255) NULL DEFAULT '', Index: mysql_schema_install.sql =================================================================== RCS file: /cvsroot/mxbb/core/install/schemas/mysql_schema_install.sql,v retrieving revision 1.41.2.2 retrieving revision 1.41.2.3 diff -C2 -d -r1.41.2.2 -r1.41.2.3 *** mysql_schema_install.sql 15 Jan 2008 11:55:04 -0000 1.41.2.2 --- mysql_schema_install.sql 16 Jan 2008 04:04:04 -0000 1.41.2.3 *************** *** 580,584 **** `portal_recached` varchar(255) NOT NULL default '', `mod_rewrite` smallint(2) NOT NULL default '0', ! `portal_backend` varchar(255) default 'phpBB2', `portal_status` smallint(2) NOT NULL default '1', `disabled_message` varchar(255) default 'We are currenty upgrading this site with latest mxBB software.', --- 580,584 ---- `portal_recached` varchar(255) NOT NULL default '', `mod_rewrite` smallint(2) NOT NULL default '0', ! `portal_backend` varchar(255) default 'phpbb2', `portal_status` smallint(2) NOT NULL default '1', `disabled_message` varchar(255) default 'We are currenty upgrading this site with latest mxBB software.', Index: mysql_schema_upgrade_to_2.8.1.sql =================================================================== RCS file: /cvsroot/mxbb/core/install/schemas/mysql_schema_upgrade_to_2.8.1.sql,v retrieving revision 1.4.2.4 retrieving revision 1.4.2.5 diff -C2 -d -r1.4.2.4 -r1.4.2.5 *** mysql_schema_upgrade_to_2.8.1.sql 15 Jan 2008 11:55:05 -0000 1.4.2.4 --- mysql_schema_upgrade_to_2.8.1.sql 16 Jan 2008 04:04:04 -0000 1.4.2.5 *************** *** 30,34 **** # New Fields in Table `mx_portal` # ! ALTER TABLE mx_table_portal ADD portal_backend varchar(255) default 'phpBB2' AFTER mod_rewrite; ALTER TABLE mx_table_portal ADD portal_status smallint(2) NOT NULL default '1' AFTER portal_backend; ALTER TABLE mx_table_portal ADD disabled_message varchar(255) default 'We are currenty upgrading this site with latest mxBB software.' AFTER portal_status; --- 30,34 ---- # New Fields in Table `mx_portal` # ! ALTER TABLE mx_table_portal ADD portal_backend varchar(255) default 'phpbb2' AFTER mod_rewrite; ALTER TABLE mx_table_portal ADD portal_status smallint(2) NOT NULL default '1' AFTER portal_backend; ALTER TABLE mx_table_portal ADD disabled_message varchar(255) default 'We are currenty upgrading this site with latest mxBB software.' AFTER portal_status; |