Fix the billing occurrence foreign key (#797)

* Fix the billing occurrence foreign key

Fix the Domain.billing_occurrence_id foreign key constraint to reference the
correct table (BillingRecurrence, not BillingEvent).
This commit is contained in:
Michael Muller
2020-09-10 12:02:24 -04:00
committed by GitHub
parent 125f509b46
commit 36482ce94f
2 changed files with 20 additions and 1 deletions
@@ -1738,7 +1738,7 @@ ALTER TABLE ONLY public."Domain"
--
ALTER TABLE ONLY public."Domain"
ADD CONSTRAINT fk_domain_billing_recurrence_id FOREIGN KEY (billing_recurrence_id) REFERENCES public."BillingEvent"(billing_event_id);
ADD CONSTRAINT fk_domain_billing_recurrence_id FOREIGN KEY (billing_recurrence_id) REFERENCES public."BillingRecurrence"(billing_recurrence_id);
--