mirror of https://github.com/halo-dev/halo
feat: add Index on post_tags.post_id and post_tags.tag.id (#675)
parent
1248cb7b14
commit
2363f4adf7
|
@ -14,7 +14,9 @@ import java.util.Objects;
|
||||||
*/
|
*/
|
||||||
@Data
|
@Data
|
||||||
@Entity
|
@Entity
|
||||||
@Table(name = "post_tags")
|
@Table(name = "post_tags",
|
||||||
|
indexes = {@Index(name = "post_tags_post_id", columnList = "post_id"),
|
||||||
|
@Index(name = "post_tags_tag_id", columnList = "tag_id")})
|
||||||
@ToString(callSuper = true)
|
@ToString(callSuper = true)
|
||||||
public class PostTag extends BaseEntity {
|
public class PostTag extends BaseEntity {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue