db.xml - decimal?
Permalink
Hi,
I need to add a DB column which will be a decimal number, I found this:
Would size="10.4" be 4 decimal places? What does the 10 mean?
Thanks
Dave
I need to add a DB column which will be a decimal number, I found this:
<field name="Income" type="decimal" size="10.2"> <default value="1000" /> </field>
Would size="10.4" be 4 decimal places? What does the 10 mean?
Thanks
Dave
So, the field will be able to contain values between -99999999.99 and 99999999.99
For reference:https://dev.mysql.com/doc/refman/5.7/en/precision-math-decimal-chara... (in this example, 10 is the precision and 2 is the scale).