Data-Store.md
Float on money
Never use float/double to store money, or anything that needs to be precise.
Use ‘string’ type instead, such as ‘decimal(10,2)’.
Never use float/double to store money, or anything that needs to be precise.
Use ‘string’ type instead, such as ‘decimal(10,2)’.