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:
parent
aeaa55afc8
commit
f8a4662998
4 changed files with 53 additions and 23 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue