use base qw/money/;
__PACKAGE__->table('money_billing');
__PACKAGE__->columns(Primary => 'id');
-__PACKAGE__->columns(Essential => qw/xact amount billing_ts billing_type note voided/);
+__PACKAGE__->columns(Essential => qw/xact amount billing_ts billing_type note voided voider void_time/);
#-------------------------------------------------------------------------------
package money::payment;
xact BIGINT NOT NULL, -- money.billable_xact.id
billing_ts TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(),
voided BOOL NOT NULL DEFAULT FALSE,
+ voider INT,
+ void_time TIMESTAMP WITH TIME ZONE,
amount NUMERIC(6,2) NOT NULL,
billing_type TEXT NOT NULL,
note TEXT