I have an existing webapp and want to add a tag feature so that users can tag existing objects. The question is should I add a tag column to each object? or should I normali
Definitely normalize. A table for tags, a table for your existing objects, and a table of links between them.