diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-02-27 16:28:20 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-02-27 16:28:20 +0000 |
commit | dc4f784558db725eb555ce9668231b89aabb8954 (patch) | |
tree | c66727af638d7f1716d32c94f20547b00afb999c /core/helpers/core_installer.php | |
parent | c4cdecc05f128bac3842852f114b96eaa821f2ca (diff) |
* 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 ****>>
Diffstat (limited to 'core/helpers/core_installer.php')
-rw-r--r-- | core/helpers/core_installer.php | 4 |
1 files changed, 3 insertions, 1 deletions
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` ( |