fix in decimal places

This commit is contained in:
Anand Doshi 2012-04-02 15:02:34 +05:30
parent c7f1e5a54a
commit 5c6cdb06b2

View File

@ -3,7 +3,7 @@ def execute():
""" """
* Custom Field changes * Custom Field changes
* Add file_list to required tables * Add file_list to required tables
* Change floats/currency to decimal(14, 6) * Change floats/currency to decimal(18, 6)
* Remove DocFormat from DocType's fields * Remove DocFormat from DocType's fields
* Remove 'no_column' from DocField * Remove 'no_column' from DocField
* Drop table DocFormat * Drop table DocFormat
@ -151,7 +151,7 @@ def change_to_decimal():
flist.append(d.get('Field')) flist.append(d.get('Field'))
if flist: if flist:
#print tab[0], flist #print tab[0], flist
statements = ("MODIFY `%s` decimal(14,6)" % f for f in flist) statements = ("MODIFY `%s` decimal(18,6)" % f for f in flist)
statements = ", \n".join(statements) statements = ", \n".join(statements)
alter_tables_list.append("ALTER TABLE `%s` \n%s\n" % (tab[0], alter_tables_list.append("ALTER TABLE `%s` \n%s\n" % (tab[0],
statements)) statements))