|
From: Benjamin C. <bc...@us...> - 2001-12-24 20:00:51
|
Update of /cvsroot/phpbt/phpbt/schemas In directory usw-pr-cvs1:/tmp/cvs-serv14579 Modified Files: mysql.in pgsql.in Log Message: Lengthen bug_list_fields Index: mysql.in =================================================================== RCS file: /cvsroot/phpbt/phpbt/schemas/mysql.in,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- mysql.in 2001/12/06 14:35:08 1.12 +++ mysql.in 2001/12/24 20:00:49 1.13 @@ -53,7 +53,7 @@ email char(60) NOT NULL default '', password char(40) NOT NULL default '', active tinyint(3) unsigned NOT NULL default '1', - bug_list_fields char(255) NOT NULL default '', + bug_list_fields text NOT NULL default '', created_by int(10) unsigned NOT NULL default '0', created_date bigint(20) unsigned NOT NULL default '0', last_modified_by int(10) unsigned NOT NULL default '0', Index: pgsql.in =================================================================== RCS file: /cvsroot/phpbt/phpbt/schemas/pgsql.in,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- pgsql.in 2001/12/06 14:28:31 1.13 +++ pgsql.in 2001/12/24 20:00:49 1.14 @@ -59,7 +59,7 @@ email varchar(60) NOT NULL DEFAULT '', password varchar(40) NOT NULL DEFAULT '', active INT2 NOT NULL DEFAULT '1', - bug_list_fields varchar(255) NOT NULL DEFAULT '', + bug_list_fields TEXT NOT NULL DEFAULT '', created_by INT4 NOT NULL DEFAULT '0', created_date INT8 NOT NULL DEFAULT '0', last_modified_by INT4 NOT NULL DEFAULT '0', |