Hey Eric,

I was just adding all the indexes from the out of date ddls in distro to liquibase and came across the one below.  It looks like the PolicyDefinitionBean has changed and the policyId column no longer exists.  What if anything would you like to use in its place for the index?

From: apiman_postgresql.ddl
--
-- Name: policydefs
--

CREATE TABLE policydefs (
id character varying(255) NOT NULL,
description character varying(512) NOT NULL,
icon character varying(255) NOT NULL,
name character varying(255) NOT NULL,
policyimpl character varying(255) NOT NULL,
policyId character varying(255)
);

ALTER TABLE ONLY policydefs
ADD CONSTRAINT PK_policydefs PRIMARY KEY (id);

ALTER TABLE ONLY policydefs
ADD CONSTRAINT FK_policydefs_1 FOREIGN KEY (policyId) REFERENCES plugins(id);

CREATE INDEX IDX_FK_policydefs_1 ON policydefs (policyId);