From: Michael J. Rubinsky Date: Fri, 18 Sep 2009 04:38:48 +0000 (-0400) Subject: Start fleshing out the K_Resource_Group stuff. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=17d9c0a9bfd94989eed8c146e345c3656e39e23b;p=horde.git Start fleshing out the K_Resource_Group stuff. --- diff --git a/kronolith/lib/Resource/Group.php b/kronolith/lib/Resource/Group.php index 575a0cb83..00d32fcf4 100644 --- a/kronolith/lib/Resource/Group.php +++ b/kronolith/lib/Resource/Group.php @@ -39,7 +39,6 @@ class Kronolith_Resource_Group extends Kronolith_Resource_Base public function __construct($params) { $params['resource_type'] = 'Group'; - parent::__construct($params); $this->_driver = $this->getDriver(); } diff --git a/kronolith/scripts/upgrades/2009-08-17_add_resources.sql b/kronolith/scripts/upgrades/2009-08-17_add_resources.sql index c9a70705d..a83cfcb19 100644 --- a/kronolith/scripts/upgrades/2009-08-17_add_resources.sql +++ b/kronolith/scripts/upgrades/2009-08-17_add_resources.sql @@ -7,6 +7,8 @@ CREATE TABLE kronolith_resources ( resource_description TEXT, resource_category VARCHAR(255) DEFAULT '', resource_response_type INT DEFAULT 0, + resource_type VARCHAR(255) NOT NULL, + resource_members BLOB, PRIMARY KEY (resource_id) );