File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
src/main/java/com/back/pinco/domain/tag/entity Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -133,6 +133,7 @@ jobs:
133133 MAIL_USERNAME : ${{ secrets.MAIL_USERNAME }}
134134 MAIL_PASSWORD : ${{ secrets.MAIL_PASSWORD }}
135135 SECRET_KEY : ${{ secrets.SECRET_KEY }}
136+ custom.jwt.secret : ${{ secrets.JWT_SECRET_KEY }}
136137
137138 run : ./gradlew test --info
138139
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import org.springframework.data.jpa.domain.support.AuditingEntityListener
1616 indexes = [
1717 Index (name = " idx_pin_tag_pin" , columnList = " pin_id" ),
1818 Index (name = " idx_pin_tag_tag" ,columnList = " tag_id" ),
19- Index (name = " idx_pin_tag_deleted" , columnList = " is_deleted" )
19+ // Index(name = "idx_pin_tag_deleted", columnList = "is_deleted")
2020 ]
2121)
2222@EntityListeners(AuditingEntityListener ::class )
You can’t perform that action at this time.
0 commit comments