Author: cfinck Date: Tue Mar 24 01:24:26 2009 New Revision: 40194
URL: http://svn.reactos.org/svn/reactos?rev=40194&view=rev Log: Update the testman SQL file
Modified: branches/danny-web/reactos.org/resources/testman/testman.sql
Modified: branches/danny-web/reactos.org/resources/testman/testman.sql URL: http://svn.reactos.org/svn/reactos/branches/danny-web/reactos.org/resources/... ============================================================================== --- branches/danny-web/reactos.org/resources/testman/testman.sql [iso-8859-1] (original) +++ branches/danny-web/reactos.org/resources/testman/testman.sql [iso-8859-1] Tue Mar 24 01:24:26 2009 @@ -10,7 +10,7 @@ `test_id` int(10) unsigned NOT NULL, `suite_id` int(10) unsigned NOT NULL, `log` longtext collate latin1_general_ci NOT NULL, - `count` int(10) unsigned NOT NULL COMMENT 'Number of all executed tests', + `count` int(10) NOT NULL COMMENT 'Number of all executed tests', `todo` int(10) unsigned NOT NULL COMMENT 'Tests marked as TODO', `failures` int(10) unsigned NOT NULL COMMENT 'Number of failed tests', `skipped` int(10) unsigned NOT NULL COMMENT 'Number of skipped tests', @@ -24,6 +24,7 @@ `user_id` bigint(20) unsigned NOT NULL, `revision` int(9) unsigned NOT NULL, `platform` varchar(24) collate latin1_general_ci NOT NULL, + `comment` varchar(255) collate latin1_general_ci default NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;