Build, Test, and Push CFDM Docker Image / test (push) Has been cancelled
Build, Test, and Push CFDM Docker Image / build-and-push (push) Has been cancelled
Build, Test, and Push CFDM Docker Image / create-release (push) Has been cancelled
Build, Test, and Push CFDM Docker Image / update-wiki (push) Has been cancelled
8 lines
339 B
SQL
8 lines
339 B
SQL
CREATE TABLE service_group_dns_records (
|
|
group_id INTEGER NOT NULL REFERENCES service_groups(id) ON DELETE CASCADE,
|
|
dns_record_id INTEGER NOT NULL REFERENCES dns_records(id) ON DELETE CASCADE,
|
|
PRIMARY KEY (group_id, dns_record_id)
|
|
);
|
|
|
|
CREATE INDEX idx_service_group_dns_records_group_id ON service_group_dns_records(group_id);
|