@@ -41,6 +41,9 @@ public class MeetupProject {
4141 @ Column (name = "poster_url" , nullable = false )
4242 private String posterUrl ;
4343
44+ @ Column (name = "web_thumbnail_url" )
45+ private String webThumbnailUrl ;
46+
4447 @ Column (name = "instagram_url" )
4548 private String instagramUrl ;
4649
@@ -72,7 +75,7 @@ public class MeetupProject {
7275
7376 @ Builder
7477 public MeetupProject (int cardinal , String name , String intro , ProjectType type , String oneLineIntro ,
75- String logoUrl , String posterUrl , String instagramUrl , String githubUrl , String appUrl ,
78+ String logoUrl , String posterUrl , String webThumbnailUrl , String instagramUrl , String githubUrl , String appUrl ,
7679 LocalDate startDate , LocalDate endDate , String teamName ) {
7780 this .cardinal = cardinal ;
7881 this .name = name ;
@@ -81,6 +84,7 @@ public MeetupProject(int cardinal, String name, String intro, ProjectType type,
8184 this .oneLineIntro = oneLineIntro ;
8285 this .logoUrl = logoUrl ;
8386 this .posterUrl = posterUrl ;
87+ this .webThumbnailUrl = webThumbnailUrl ;
8488 this .instagramUrl = instagramUrl ;
8589 this .githubUrl = githubUrl ;
8690 this .appUrl = appUrl ;
0 commit comments