From 7ae73fcd653d40d7ff1240f816481473adba5da4 Mon Sep 17 00:00:00 2001 From: Bharat Mediratta Date: Mon, 3 Nov 2008 00:26:55 +0000 Subject: Change structure of item table to match MPTT class (which is a little different from ORM_MPTT which we used in gx --- core/helpers/core_installer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/helpers') 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`)) -- cgit v1.2.3