We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 367a2db commit 032cac1Copy full SHA for 032cac1
1 file changed
src/main/java/sopt/comfit/company/domain/Company.java
@@ -10,7 +10,9 @@
10
@Entity
11
@Getter
12
@NoArgsConstructor(access = AccessLevel.PROTECTED)
13
-@Table(name = "companies")
+@Table(name = "companies", indexes = {
14
+ @Index(name = "idx_company_industry_scale_created", columnList = "industry, scale, created_at DESC")
15
+})
16
public class Company extends BaseTimeEntity {
17
@Id
18
@GeneratedValue(strategy = GenerationType.IDENTITY)
0 commit comments