File tree 2 files changed +0
-6
lines changed
kanban-app/src/main/java/com/wkrzywiec/medium/kanban/model
2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -23,11 +23,9 @@ public class Kanban {
23
23
24
24
@ Id
25
25
@ GeneratedValue (strategy = GenerationType .IDENTITY )
26
- @ Column (name = "id" )
27
26
@ ApiModelProperty (position = 1 )
28
27
private Long id ;
29
28
30
- @ Column (name = "title" )
31
29
@ ApiModelProperty (position = 2 )
32
30
private String title ;
33
31
Original file line number Diff line number Diff line change @@ -19,19 +19,15 @@ public class Task {
19
19
20
20
@ Id
21
21
@ GeneratedValue (strategy = GenerationType .IDENTITY )
22
- @ Column (name = "id" )
23
22
@ ApiModelProperty (position = 1 )
24
23
private Long id ;
25
24
26
- @ Column (name = "title" )
27
25
@ ApiModelProperty (position = 2 )
28
26
private String title ;
29
27
30
- @ Column (name = "description" )
31
28
@ ApiModelProperty (position = 3 )
32
29
private String description ;
33
30
34
- @ Column (name = "color" )
35
31
@ ApiModelProperty (position = 4 )
36
32
private String color ;
37
33
You can’t perform that action at this time.
0 commit comments