From 2948bb8a6b8fce8f6dca2640e495b8d75a7092c0 Mon Sep 17 00:00:00 2001 From: FrancescoUK Date: Mon, 18 Apr 2016 09:42:31 +0100 Subject: [PATCH] Fixed typo in tables.sql , instead of ; (#375) --- database/database.sql | 2 +- database/migrate_phppos_dist.sql | 2 +- database/tables.sql | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/database/database.sql b/database/database.sql index 9fe26626b..43981ae40 100644 --- a/database/database.sql +++ b/database/database.sql @@ -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`) diff --git a/database/migrate_phppos_dist.sql b/database/migrate_phppos_dist.sql index 218be2a61..ef95a815a 100644 --- a/database/migrate_phppos_dist.sql +++ b/database/migrate_phppos_dist.sql @@ -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`) diff --git a/database/tables.sql b/database/tables.sql index 9078228a6..9c1c0800d 100644 --- a/database/tables.sql +++ b/database/tables.sql @@ -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`)