/* These are the changes from 1.4 to 1.5.1 Peter Harris 5/9/2003 c_parent column on category table to make the hierarchy explicit rather than implicit based on prefixes of category code. */ alter table category add column c_parent text; create index c_by_parent on category (c_parent);