laravel-vote icon indicating copy to clipboard operation
laravel-vote copied to clipboard

DB Unique constraint for good measure?

Open LiamKarlMitchell opened this issue 2 years ago • 0 comments

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']);

LiamKarlMitchell avatar Dec 28 '22 19:12 LiamKarlMitchell