File tree 3 files changed +6
-1
lines changed
3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 9
9
@ Builder
10
10
@ AllArgsConstructor (access = AccessLevel .PROTECTED )
11
11
@ NoArgsConstructor (access = AccessLevel .PROTECTED )
12
+ @ Table (name = "Payment" , indexes = {
13
+ @ Index (name = "idx_payer_id" , columnList = "payer_id" )
14
+ })
12
15
public class Payment {
13
16
14
17
@ Id
Original file line number Diff line number Diff line change 12
12
@ Builder
13
13
@ AllArgsConstructor (access = AccessLevel .PROTECTED )
14
14
@ NoArgsConstructor (access = AccessLevel .PROTECTED )
15
+ @ Table (name = "Transfer" , indexes = {
16
+ @ Index (name = "idx_transfer_group_id" , columnList = "transferGroupId" )
17
+ })
15
18
public class Transfer extends BaseTimeEntity {
16
19
17
20
@ Id
Original file line number Diff line number Diff line change 9
9
url : jdbc:mysql://localhost:3306/bank_db?useSSL=false&allowPublicKeyRetrieval=true
10
10
11
11
jpa :
12
- show-sql : true
13
12
hibernate :
14
13
ddl-auto : create
15
14
naming :
You can’t perform that action at this time.
0 commit comments