Change structure of item table to match MPTT class (which is a little different from ORM_MPTT which we used in gx

This commit is contained in:
Bharat Mediratta
2008-11-03 00:26:55 +00:00
parent df36d28b8a
commit 7ae73fcd65

View File

@@ -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`))