ruby on rails - Acts as taggable not migrating because I have another tags model -
i'm trying migrate acts_as_taggable install it, but, since have table called "tags", photo tagging, collapse , wont migrate.
how can change name table acts_as_table creates? possible?
thanks lot!
you can take docs @ http://rubydoc.info/gems/acts-as-taggable-on/3.4.1/frames
class user < activerecord::base acts_as_taggable # alias acts_as_taggable_on :tags acts_as_taggable_on :skills end
just use second line new tag model name
Comments
Post a Comment