Installation and Upgrade Notes
- Bug fix release Git changelog.
- Addresses issues in Release-0.20.6
Highlights:
- Fix issue with tracking id with voiding an invoice #1086
- Fix NPE during invoice generation after a billing event was deleted #1084
Behavior Changes
N/A
DB Changes
alter table invoice_tracking_ids add column is_active boolean default true after record_date;
alter table invoice_tracking_ids add column updated_by varchar(50) NOT NULL after created_date;
alter table invoice_tracking_ids add column updated_date datetime NOT NULL DEFAULT '1970-01-01 00:00:00' after updated_by;
create index invoice_tracking_invoice_id_idx on invoice_tracking_ids(invoice_id);