summaryrefslogtreecommitdiff
path: root/core/models/module.php
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2008-12-10 19:44:58 +0000
committerTim Almdal <tnalmdal@shaw.ca>2008-12-10 19:44:58 +0000
commit7e5935d5325a7bc20fb5603a76a5af4d7df499a9 (patch)
tree08728a94aefb5df32bb084ee676ec81a3c4cd9c3 /core/models/module.php
parent18a6614a11cf39a29f5705edabc710688da357e6 (diff)
Create a module parameter table. This will be useful if a module wants to store information, but is not enough to warrant a table of its own
Diffstat (limited to 'core/models/module.php')
-rw-r--r--core/models/module.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/models/module.php b/core/models/module.php
index de4cc43d..5229f42d 100644
--- a/core/models/module.php
+++ b/core/models/module.php
@@ -18,4 +18,5 @@
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
class Module_Model extends ORM {
+ protected $has_many = array("parameters");
}