Add new columns to BillingEvent (#1573)

* Add new columns to BillingEvent.java

* Improve PR and modifyJodaMoneyType to handle null currency in override

* Add test cases for edge cases of nullSafeGet in JodaMoneyType

* Improve assertions
This commit is contained in:
Rachel Guan 2022-04-11 20:09:26 -04:00 committed by GitHub
parent 65c2570b8f
commit 3a9a8c6557
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 712 additions and 13 deletions

View file

@ -79,6 +79,9 @@
domain_name text not null,
recurrence_end_time timestamptz,
recurrence_time_of_year text,
renewal_price_amount numeric(19, 2),
renewal_price_currency text,
renewal_price_behavior text not null,
primary key (billing_recurrence_id)
);