From dc4f784558db725eb555ce9668231b89aabb8954 Mon Sep 17 00:00:00 2001 From: Tim Almdal Date: Fri, 27 Feb 2009 16:28:20 +0000 Subject: * Refactor task management methods from admin_maintenance.php to task.php * Added a owner_id field to the task database * Modified the admin maintenace to show the owner of the task <<**** Requires a reinstallation of core ****>> --- core/helpers/core_installer.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'core/helpers/core_installer.php') diff --git a/core/helpers/core_installer.php b/core/helpers/core_installer.php index bf83c339..e1dd34c2 100644 --- a/core/helpers/core_installer.php +++ b/core/helpers/core_installer.php @@ -171,7 +171,9 @@ class core_installer { `percent_complete` int(9) default 0, `state` varchar(32) default NULL, `status` varchar(255) default NULL, - PRIMARY KEY (`id`)) + `owner_id` int(9) default NULL, + PRIMARY KEY (`id`), + KEY (`owner_id`)) ENGINE=InnoDB DEFAULT CHARSET=utf8;"); $db->query("CREATE TABLE `vars` ( -- cgit v1.2.3