It depends on whether you want to keep the relevant voting information or not. This has nothing to do with RoR, but with database normalization.
If you want to save additional information with votes, for example, perhaps the date when it was recorded, you should save it in another table (and as such it will be a different model). If not, you can save it in the table of other objects.
source
share