7

The title says it all. What is the data that is contained in the PostFeedback table. I can see that there are columns isAnonymous(either true or false) and VoteTypeId(either upvote or downvote). But aren't the votes present in Votes table? Then, what are the votes in PostFeedback table?

1 Answer 1

11

This is the purpose:

enter image description here

And in words: when anonymous visitor (and probably unregistered user as well) is browsing a question, he can click the upvote arrow and it sends a "feedback", which is then being stored in that table you asked about.

This information has no actual effect (no reputation, no badges, no public access) however it's used to collect statistics that are available to 10K users via this link.

More information is available here: Who gets the "Was this post useful to you?" feedback?

2
  • So, if isAnonymous is true, that means the voter is unregistered. If it is false, he is registered but doesn't have privileges to vote. Right?
    – Noel
    Commented Aug 29, 2013 at 1:13
  • 1
    @Ramblin'Man nope, the other way around as far as I know. Unregistered means actual user, anonymous means random visitor who never posted an answer. Commented Aug 29, 2013 at 6:42

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .