From: Pradeep Nayak Date: Sat, 4 May 2013 18:19:40 +0000 (+0530) Subject: --worked on CRA-12501, changed length/values for tax_rate from 9,8 to 10,8 X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=d544ffeea7de14525449ca4f7a1a060648930c9e;p=civicrm-core.git --worked on CRA-12501, changed length/values for tax_rate from 9,8 to 10,8 ---------------------------------------- * CRM-12501: Financial Account Tax > 10 causes error http://issues.civicrm.org/jira/browse/CRM-12501 --- diff --git a/CRM/Upgrade/Incremental/sql/4.3.3.mysql.tpl b/CRM/Upgrade/Incremental/sql/4.3.3.mysql.tpl new file mode 100644 index 0000000000..0b75a6dd19 --- /dev/null +++ b/CRM/Upgrade/Incremental/sql/4.3.3.mysql.tpl @@ -0,0 +1,2 @@ +-- CRM-12501 +ALTER TABLE civicrm_financial_account CHANGE `tax_rate` `tax_rate` DECIMAL( 10, 8 ) NULL DEFAULT NULL COMMENT 'The percentage of the total_amount that is due for this tax.'; diff --git a/xml/schema/Financial/FinancialAccount.xml b/xml/schema/Financial/FinancialAccount.xml index 877a66e077..8c0fc0c681 100644 --- a/xml/schema/Financial/FinancialAccount.xml +++ b/xml/schema/Financial/FinancialAccount.xml @@ -116,7 +116,7 @@ tax_rate decimal - 9,8 + 10,8 The percentage of the total_amount that is due for this tax. 4.3