Skip to content

Commit

Permalink
Merge pull request #20 from STUDIO-EYE/feat/EPIC-80-post
Browse files Browse the repository at this point in the history
[Fix] filePath가 길어질 때의 오류 해결
  • Loading branch information
ibaesuyeon authored Jun 5, 2024
2 parents de0ab96 + def56aa commit 13e99c9
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,13 @@ public class PostFile {
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;

@Column(length=1000)
private String fileName;

@Column(length=1000)
private String filePath;

@Column(length=1000)
private String s3key;

@Nullable
Expand Down

0 comments on commit 13e99c9

Please sign in to comment.