Describe the bug
We mustn't store user ratings as float number, that a bad idea from the beginning. And in DB "personal_rating": 7.900000095367432 takes up much more space, that if we just stored it as int between 0 and 100.
I would suggest to do a DB migration and migrate these ratings to an integer between 0 and 100. Should be an easy thing to do.
Describe the bug
We mustn't store user ratings as
floatnumber, that a bad idea from the beginning. And in DB"personal_rating": 7.900000095367432takes up much more space, that if we just stored it asintbetween 0 and 100.I would suggest to do a DB migration and migrate these ratings to an integer between 0 and 100. Should be an easy thing to do.