Soc/db/migrate/20231019172703_create_join_...

9 lines
263 B
Ruby

class CreateJoinTableTagsMicroposts < ActiveRecord::Migration[7.1]
def change
create_join_table :tags, :microposts, primary_key: [:tag_id, :micropost_id] do |t|
t.index [:tag_id, :micropost_id]
t.index [:micropost_id, :tag_id]
end
end
end