Add Index on post_tags.post_id to Accelerate Query
Created by: wtune
Problem
Missing index on table post_tags column post_id might make the underlying query issued via eg. PostTagRepository#findAllByPostId slow.Since it's also easy to find that we always read post_tags by post_id or tag_id and sometimes insert or update, the performance impact for write operations is acceptable under common cases.
Possible Solution
Add Index on post_tags.post_id