Fixed typo in tables.sql , instead of ; (#375)

This commit is contained in:
FrancescoUK
2016-04-18 09:42:31 +01:00
parent 19d3a34bcc
commit 2948bb8a6b
3 changed files with 3 additions and 3 deletions

View File

@@ -74,7 +74,7 @@ CREATE TABLE `ospos_customers` (
`company_name` varchar(255) DEFAULT NULL,
`account_number` varchar(255) DEFAULT NULL,
`taxable` int(1) NOT NULL DEFAULT '1',
`discount_percent` decimal(15,2) NOT NULL DEFAULT '0.00';
`discount_percent` decimal(15,2) NOT NULL DEFAULT '0.00',
`deleted` int(1) NOT NULL DEFAULT '0',
UNIQUE KEY `account_number` (`account_number`),
KEY `person_id` (`person_id`)

View File

@@ -74,7 +74,7 @@ CREATE TABLE `ospos_customers` (
`company_name` varchar(255) DEFAULT NULL,
`account_number` varchar(255) DEFAULT NULL,
`taxable` int(1) NOT NULL DEFAULT '1',
`discount_percent` decimal(15,2) NOT NULL DEFAULT '0.00';
`discount_percent` decimal(15,2) NOT NULL DEFAULT '0.00',
`deleted` int(1) NOT NULL DEFAULT '0',
UNIQUE KEY `account_number` (`account_number`),
KEY `person_id` (`person_id`)

View File

@@ -74,7 +74,7 @@ CREATE TABLE `ospos_customers` (
`company_name` varchar(255) DEFAULT NULL,
`account_number` varchar(255) DEFAULT NULL,
`taxable` int(1) NOT NULL DEFAULT '1',
`discount_percent` decimal(15,2) NOT NULL DEFAULT '0.00';
`discount_percent` decimal(15,2) NOT NULL DEFAULT '0.00',
`deleted` int(1) NOT NULL DEFAULT '0',
UNIQUE KEY `account_number` (`account_number`),
KEY `person_id` (`person_id`)