summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2008-11-03 00:26:55 +0000
committerBharat Mediratta <bharat@menalto.com>2008-11-03 00:26:55 +0000
commit7ae73fcd653d40d7ff1240f816481473adba5da4 (patch)
tree8d71d0257981df9dfe32da34fefe4aee4e622555 /core
parentdf36d28b8a1a5c593a2a930d34008fb8233e7bd1 (diff)
Change structure of item table to match MPTT class (which is a little different from ORM_MPTT which we used in gx
Diffstat (limited to 'core')
-rw-r--r--core/helpers/core_installer.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/helpers/core_installer.php b/core/helpers/core_installer.php
index ef4dddd9..d06820ae 100644
--- a/core/helpers/core_installer.php
+++ b/core/helpers/core_installer.php
@@ -44,10 +44,10 @@ class core_installer {
`type` char(32) default NULL,
`title` char(255) default NULL,
`path` char(255) default NULL,
- `parent_id` int(9) default NULL,
- `level` int(9) default NULL,
`left` int(9) default NULL,
`right` int(9) default NULL,
+ `parent_id` int(9) default NULL,
+ `scope` int(9) default NULL,
PRIMARY KEY (`id`),
KEY `parent_id` (`parent_id`),
KEY `type` (`type`))