Remove unique constriant from invoice_number column in suspended_sales

This commit is contained in:
jekkos
2015-10-07 08:48:59 +02:00
parent 98b0df9e80
commit d8a369f39d
3 changed files with 35 additions and 47 deletions

View File

@@ -583,8 +583,7 @@ CREATE TABLE `ospos_sales_suspended` (
`sale_id` int(10) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`sale_id`),
KEY `customer_id` (`customer_id`),
KEY `employee_id` (`employee_id`),
UNIQUE KEY `invoice_number` (`invoice_number`)
KEY `employee_id` (`employee_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ;
--