summaryrefslogtreecommitdiff
path: root/core/helpers/core_installer.php
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-02-27 16:28:20 +0000
committerTim Almdal <tnalmdal@shaw.ca>2009-02-27 16:28:20 +0000
commitdc4f784558db725eb555ce9668231b89aabb8954 (patch)
treec66727af638d7f1716d32c94f20547b00afb999c /core/helpers/core_installer.php
parentc4cdecc05f128bac3842852f114b96eaa821f2ca (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.php4
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` (