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 ****>> --- installer/install.sql | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'installer') diff --git a/installer/install.sql b/installer/install.sql index 72416653..bedbec55 100644 --- a/installer/install.sql +++ b/installer/install.sql @@ -272,7 +272,9 @@ CREATE TABLE `tasks` ( `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; SET character_set_client = @saved_cs_client; DROP TABLE IF EXISTS `themes`; -- cgit v1.2.3