differentiate between build environment (core and plugin) dependencies and project dependencies, using generally the same approach as we do for rpm

This commit is contained in:
Mike Bonnet 2008-05-06 09:06:40 -04:00
parent aeaa55afc8
commit f8a4662998
4 changed files with 53 additions and 23 deletions

View file

@ -655,6 +655,7 @@ CREATE TABLE maven_archives (
CREATE TABLE buildroot_archives (
buildroot_id INTEGER NOT NULL REFERENCES buildroot (id),
archive_id INTEGER NOT NULL REFERENCES archiveinfo (id),
project_dep BOOLEAN NOT NULL,
PRIMARY KEY (buildroot_id, archive_id)
) WITHOUT OIDS;
CREATE INDEX buildroot_archives_archive_idx ON buildroot_archives (archive_id);