__PACKAGE__->table('money_billing');
__PACKAGE__->columns(Primary => 'id');
__PACKAGE__->columns(Essential => qw/xact amount billing_ts billing_type note
- voided voider void_time btype/);
+ btype/);
#-------------------------------------------------------------------------------
package money::payment;
#-------------------------------------------------------------------------------
+package money::void_payment;
+use base qw/money/;
+__PACKAGE__->table('money_void_payment');
+__PACKAGE__->columns(Primary => 'id');
+__PACKAGE__->columns(Essential => qw/xact amount payment_ts note accepting_usr
+ amount_collected voided billing/);
+#-------------------------------------------------------------------------------
+
1;