add first name, last name and mail to the orders table

This commit is contained in:
GotPPay
2018-06-24 18:57:30 +02:00
parent 98a3f4dad8
commit f2f82ecea9
2 changed files with 10 additions and 1 deletions

View File

@@ -796,6 +796,9 @@ CREATE TABLE `orders` (
`projectNumber` varchar(12) DEFAULT NULL,
`deliveryAddress` varchar(600) DEFAULT NULL,
`billingAddress` varchar(600) DEFAULT NULL,
`billingFirstName` varchar(100) DEFAULT NULL,
`billingLastName` varchar(100) DEFAULT NULL,
`billingMail` varchar(300) DEFAULT NULL,
`idTerms` int(11) DEFAULT '1',
`customerAccepted` tinyint(1) DEFAULT '0',
`acceptanceDueDate` date DEFAULT NULL,