summaryrefslogtreecommitdiff
path: root/installer/install.sql
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 /installer/install.sql
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 'installer/install.sql')
-rw-r--r--installer/install.sql4
1 files changed, 3 insertions, 1 deletions
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`;