summaryrefslogtreecommitdiff
path: root/README.1.5.0pre6
diff options
context:
space:
mode:
Diffstat (limited to 'README.1.5.0pre6')
-rw-r--r--README.1.5.0pre618
1 files changed, 17 insertions, 1 deletions
diff --git a/README.1.5.0pre6 b/README.1.5.0pre6
index ba9129fab..bd5e39b94 100644
--- a/README.1.5.0pre6
+++ b/README.1.5.0pre6
@@ -9,7 +9,23 @@ CREATE TABLE cust_pay_refund (
CREATE INDEX cust_pay_refund1 ON cust_pay_refund(paynum);
CREATE INDEX cust_pay_refund2 ON cust_pay_refund(refundnum);
+CREATE TABLE cust_pay_void (
+ paynum int NOT NULL,
+ custnum int NOT NULL,
+ paid decimal(10,2) NOT NULL,
+ _date int,
+ payby char(4) NOT NULL,
+ payinfo varchar(80),
+ paybatch varchar(80),
+ closed char(1),
+ void_date int,
+ reason varchar(80),
+ otaker varchar(32) NOT NULL,
+ PRIMARY KEY (paynum)
+);
+CREATE INDEX cust_pay_void1 ON cust_pay_void(custnum);
+
dbdef-create username
-create-history-tables username cust_pay_refund
+create-history-tables username cust_pay_refund cust_pay_void
dbdef-create username