Remove Ofy support from Registry (#1688)

Also made some code quality changes based on IntelliJ suggestions on
modified files.
This commit is contained in:
Lai Jiang
2022-07-01 09:04:46 -04:00
committed by GitHub
parent 6d40fe41e6
commit b2ec088749
12 changed files with 57 additions and 163 deletions
@@ -28,7 +28,7 @@
SELECT b, r FROM BillingEvent b
JOIN Registrar r ON b.clientId = r.clientIdentifier
JOIN Domain d ON b.domainRepoId = d.repoId
JOIN Tld t ON t.tldStrId = d.tld
JOIN Tld t ON t.tldStr = d.tld
LEFT JOIN BillingCancellation c ON b.id = c.refOneTime.billingId
LEFT JOIN BillingCancellation cr ON b.cancellationMatchingBillingEvent = cr.refRecurring.billingId
WHERE r.billingAccountMap IS NOT NULL