I need a one-liner to generate a has_and_belongs_to_many join table or else I will go back to Django for its simpler many-to-many constructs.
rails 3 generate model article_tags [..]
Models
# article.rb
has_many :articles_tags
has_many :tags, :through => :articles_tags
# tag.rb
has_many :articles_tags
has_many :articles, :through => :articles_tags
# article_tag.rb
belongs_to :tag
belongs_to :article