|
From: Benjamin C. <bc...@us...> - 2001-08-30 20:44:44
|
Update of /cvsroot/phpbt/phpbt In directory usw-pr-cvs1:/tmp/cvs-serv9073 Modified Files: createdb_pg.sql dbchanges.sql Log Message: Changing op_sys_id to os_id Index: createdb_pg.sql =================================================================== RCS file: /cvsroot/phpbt/phpbt/createdb_pg.sql,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- createdb_pg.sql 2001/08/29 13:44:57 1.2 +++ createdb_pg.sql 2001/08/30 20:44:40 1.3 @@ -50,7 +50,7 @@ "project_id" INT4 NOT NULL DEFAULT '0', "version_id" INT4 NOT NULL DEFAULT '0', "component_id" INT4 NOT NULL DEFAULT '0', - "op_sys_id" INT2 NOT NULL DEFAULT '0', + "os_id" INT2 NOT NULL DEFAULT '0', "browser_string" varchar(255) NOT NULL DEFAULT '', "close_date" INT8 NOT NULL DEFAULT '0', PRIMARY KEY (bug_id) Index: dbchanges.sql =================================================================== RCS file: /cvsroot/phpbt/phpbt/dbchanges.sql,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- dbchanges.sql 2001/08/28 03:51:33 1.10 +++ dbchanges.sql 2001/08/30 20:44:40 1.11 @@ -28,7 +28,7 @@ `project_id` int(10) unsigned NOT NULL default '0', `version_id` int(10) unsigned NOT NULL default '0', `component_id` int(10) unsigned NOT NULL default '0', - `op_sys_id` tinyint(3) unsigned NOT NULL default '0', + `os_id` tinyint(3) unsigned NOT NULL default '0', `browser_string` varchar(255) NOT NULL default '', `close_date` bigint(20) unsigned NOT NULL default '0', PRIMARY KEY (`bug_id`) |