Skip to content

Commit

Permalink
changed the data type of history_notes from string to clob
Browse files Browse the repository at this point in the history
  • Loading branch information
saivivek116 committed Jun 27, 2024
1 parent 8aca1af commit 57b735c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/com/gw/jpa/History.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
package com.gw.jpa;


import lombok.Data;


import javax.persistence.Lob;
import javax.persistence.Entity;
import javax.persistence.Id;
Expand All @@ -26,6 +24,7 @@ public class History {

private Date history_end_time;

@Lob
private String history_notes;

private String history_process;
Expand Down

0 comments on commit 57b735c

Please sign in to comment.