hydra/src/sql/upgrade-19.sql
2013-08-15 02:33:10 +02:00

6 lines
235 B
SQL

create table AggregateConstituents (
aggregate integer not null references Builds(id) on delete cascade,
constituent integer not null references Builds(id) on delete cascade,
primary key (aggregate, constituent)
);