database-design: table of likes?

Viewed 14542

I wonder,
at many websites there is the option to like/dislike a post.
even here of course, at stackoverflow.

so, technically it's a big likes table?

user_id    post_id

user_id - who voted
post_id - which post is it

is that all about?
a big likes table?
isn't there something more efficient/sophisticated?

2 Answers
Related