From: Joe Hunt Date: Fri, 15 Jan 2010 10:46:03 +0000 (+0000) Subject: Removed a comma after last item in structure for 0_tax_types, line 1596 X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=8e2e178047de55bf260544b8ce6c7d597860f791;p=textcart.git Removed a comma after last item in structure for 0_tax_types, line 1596 --- diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 24ebb9b..000b365 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -24,6 +24,8 @@ $ -> Affected files $ /includes/page/footer.inc /includes/ui/ui_view.inc /includes/main.inc +# Removed a comma after last item in structure for 0_tax_types, line 1596 +$ /sql/en_US-new.sql 14-Jan-2010 Joe Hunt # A couple of small bugs were fixed in average material cost diff --git a/sql/en_US-new.sql b/sql/en_US-new.sql index a2c3db2..46066b3 100644 --- a/sql/en_US-new.sql +++ b/sql/en_US-new.sql @@ -1593,7 +1593,7 @@ CREATE TABLE `0_tax_types` ( `purchasing_gl_code` varchar(11) NOT NULL default '', `name` varchar(60) NOT NULL default '', `inactive` tinyint(1) NOT NULL default '0', - PRIMARY KEY (`id`), + PRIMARY KEY (`id`) ) TYPE=InnoDB AUTO_INCREMENT=2 ;