Skip to content

Commit

Permalink
fix: 인덱스 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
GitJIHO committed Dec 3, 2024
1 parent 24fe0f5 commit a32844d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/software/ott/content/entity/Content.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
@Index(name = "idx_title", columnList = "title"),
@Index(name = "idx_listedIn", columnList = "listedIn"),
@Index(name = "idx_director", columnList = "director"),
@Index(name = "idx_cast", columnList = "cast"),
@Index(name = "idx_title_director_listedIn_cast", columnList = "title, director, listedIn, cast")
@Index(name = "idx_castMember", columnList = "castMember"),
@Index(name = "idx_title_director_listedIn_castMember", columnList = "title, director, listedIn, castMember")
}
)
public class Content {
Expand Down

0 comments on commit a32844d

Please sign in to comment.