laravel-vote
laravel-vote copied to clipboard
DB Unique constraint for good measure?
There is no unique DB constraint on user_id, votable_type, votable_id. One could easily be added, maybe it was not included if this feature is not available in all databases?
$table->unique(['user_id', 'votable_type', 'votable_id']);