After installing and syncing db, i added this to my model:
rating = RatingField(range=5)
and got the error:
Unknown column 'resources_resources.rating_votes' in 'field list'
Docs says: "The way django-ratings is built requires you to attach a RatingField to your models. This field will create two columns, a votes column, and a score column. They will both be prefixed with your field name"
I checked the DB and the tables ratings_score and ratings_vote were created, but no columns were added to the model i added the RatingField to (not sure if it's supposed to add columns to the model's DB).
What am i missing? I believe i followed to tutorial correctly. I'm on Django 1.6. If theres any manual solution to get this working it would help too.