forked from lix-project/hydra
5 lines
235 B
SQL
5 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)
|
|
);
|