Skip to content

Commit 383ccf3

Browse files
CopilotRMCampos
andcommitted
Remove redundant nullable=true annotation from NoteEntity shareToken column
Co-authored-by: RMCampos <[email protected]>
1 parent b16c174 commit 383ccf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/main/java/br/com/tasknoteapp/server/entity/NoteEntity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public class NoteEntity {
4242
@Column(name = "shared", nullable = false)
4343
private boolean shared = false;
4444

45-
@Column(name = "share_token", nullable = true, length = 36)
45+
@Column(name = "share_token", length = 36)
4646
private String shareToken;
4747

4848
public Long getId() {

0 commit comments

Comments
 (0)