I was migrating Posts to a new Model, and everything migrated just fine, but each Post.tag_list migrated to the model with a non-delimited string.
So if my Post.first.tag_list = "business, opinion, sandwich" -- it moved over to my Model as Model.first.tag_list = "business opinion sandwich"
How can I update all my resources that are tagged with "business opinion sandwich" to be "business, opinion, sandwich" for example? (i want the commas instead of a single long string)
Can't find anything about this, spent a lot of time looking for any solutions past few days.
I was migrating
Posts
to a newModel
, and everything migrated just fine, but eachPost.tag_list
migrated to the model with a non-delimited string.So if my
Post.first.tag_list = "business, opinion, sandwich"
-- it moved over to myModel
asModel.first.tag_list = "business opinion sandwich"
How can I update all my resources that are tagged with "business opinion sandwich" to be "business, opinion, sandwich" for example? (i want the commas instead of a single long string)
Can't find anything about this, spent a lot of time looking for any solutions past few days.