Okey, so I've tried using decimal field, but when trying this in Sequel Pro I get the following error:
The row was not written to the MySQL database. You probably haven't changed anything.
Reload the table to be sure that the row exists and use a primary key for your table.
My field looks like this:
Field: price
Type: decimal
Length: 11,0
Default: 0
My field looks like this: Field: price Type: decimal Length: 11,0 Default: 0
that's not correct for what you want to achieve. You have to use eg 8,3 as length for your decimal field, which means the number can be a total of 8 digits and there are 3 digits on the right side of the comma, eg 12350,750
My problem now is that it wont take comma, but accepts period. Is this easy to fix on database end, or should I just replace commas with periods when writing to db and replace them back, when editing?