|
From: Benjamin C. <bc...@us...> - 2003-02-21 13:45:37
|
Update of /cvsroot/phpbt/phpbt/schemas In directory sc8-pr-cvs1:/tmp/cvs-serv20499 Modified Files: mysql.in oci8.in pgsql.in Log Message: Lengthening the version_name field Index: mysql.in =================================================================== RCS file: /cvsroot/phpbt/phpbt/schemas/mysql.in,v retrieving revision 1.35 retrieving revision 1.36 diff -u -r1.35 -r1.36 --- mysql.in 23 Sep 2002 20:09:08 -0000 1.35 +++ mysql.in 21 Feb 2003 13:45:29 -0000 1.36 @@ -246,7 +246,7 @@ CREATE TABLE TBL_VERSION ( version_id int(10) unsigned NOT NULL default '0', project_id int(10) unsigned NOT NULL default '0', - version_name char(10) NOT NULL default '', + version_name char(30) NOT NULL default '', active tinyint(1) NOT NULL default '1', created_by int(10) unsigned NOT NULL default '0', created_date bigint(20) unsigned NOT NULL default '0', Index: oci8.in =================================================================== RCS file: /cvsroot/phpbt/phpbt/schemas/oci8.in,v retrieving revision 1.19 retrieving revision 1.20 diff -u -r1.19 -r1.20 --- oci8.in 23 Sep 2002 20:09:08 -0000 1.19 +++ oci8.in 21 Feb 2003 13:45:32 -0000 1.20 @@ -251,7 +251,7 @@ CREATE TABLE TBL_VERSION ( version_id number(10) default '0' NOT NULL, project_id number(10) default '0' NOT NULL, - version_name varchar2(10) default '' NOT NULL, + version_name varchar2(30) default '' NOT NULL, active number(1) default '1' NOT NULL, created_by number(10) default '0' NOT NULL, created_date number(20) default '0' NOT NULL, Index: pgsql.in =================================================================== RCS file: /cvsroot/phpbt/phpbt/schemas/pgsql.in,v retrieving revision 1.37 retrieving revision 1.38 diff -u -r1.37 -r1.38 --- pgsql.in 5 Nov 2002 18:07:02 -0000 1.37 +++ pgsql.in 21 Feb 2003 13:45:33 -0000 1.38 @@ -244,7 +244,7 @@ CREATE TABLE TBL_VERSION ( version_id INT4 NOT NULL DEFAULT '0', project_id INT4 NOT NULL DEFAULT '0', - version_name varchar(10) NOT NULL DEFAULT '', + version_name varchar(30) NOT NULL DEFAULT '', active INT2 NOT NULL DEFAULT '1', created_by INT4 NOT NULL DEFAULT '0', created_date INT8 NOT NULL DEFAULT '0', |