From 5c594a9d859a145c505ad3b9b5e3a7adb3561ab7 Mon Sep 17 00:00:00 2001 From: dave Date: Wed, 19 Dec 2007 21:16:58 +0000 Subject: [PATCH] - Sneak in a change to the report tables, we're going to create tour reports next --- db/db.update.84.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/db/db.update.84.sql b/db/db.update.84.sql index 6c41bb1..bfed102 100644 --- a/db/db.update.84.sql +++ b/db/db.update.84.sql @@ -4,3 +4,4 @@ INSERT INTO `config` ( `var` , `val` , `category` , `type` , `type_values` , `or ( 'tours_assigner_percent', '-1', 'Tour Assigner', '', '', '99999', '', '0'), ( 'tours_assigner_effort', '10000', 'Tour Assigner', '', '', '99999', 'This number controls how long and hard the tour assigner will look for a quality solution. Smaller numbers are lower effort. 100 is practically no effort, 1000 is moderate effort, 10000 is high effort. It can take several tens of minutes to run the assigner with high effort, but it gives a very good solution.', '-1'); +ALTER TABLE `reports` CHANGE `type` `type` ENUM( 'student', 'judge', 'award', 'committee', 'school', 'volunteer', 'tour' ) NOT NULL DEFAULT 'student' ;