Create A Join Table With The Migration DSL
def change
create_join_table :tags, :posts
end create_table "posts_tags", id: false, force: :cascade do |t|
t.bigint "tag_id", null: false
t.bigint "post_id", null: false
endLast updated
def change
create_join_table :tags, :posts
end create_table "posts_tags", id: false, force: :cascade do |t|
t.bigint "tag_id", null: false
t.bigint "post_id", null: false
endLast updated