I am creating a blog in Rails using Scaffolding. I want to add a \'tags\' field on each post like on StackOverflow and WordPress. I can do this with the string type (
Err, the usual way? Add Tag entity, add has_many :tags in your Post entity. Then migrate. That would be all.
has_many :tags