Skip to content

Commit

Permalink
📦️ [CHORE] 스티커 더미데이터 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
ddongseop committed Jan 9, 2024
1 parent d8d811e commit 5dffccb
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/main/java/org/sopt/lequuServer/InitDb.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ public void init() {
}

private static final List<String> CHARACTER_STICKERS = Arrays.asList(
"https://lequu-server-bucket.s3.ap-northeast-2.amazonaws.com/stickers/04d691f2-eb9c-4556-8962-005c58ce61cf.jpg",
"https://lequu-server-bucket.s3.ap-northeast-2.amazonaws.com/stickers/0215b8a5-d7a1-40c3-b291-5174b1747074.jpg",
"https://lequu-server-bucket.s3.ap-northeast-2.amazonaws.com/stickers/c446705f-d96f-4cef-b490-62979fc52cd9.jpg",
"https://lequu-server-bucket.s3.ap-northeast-2.amazonaws.com/stickers/1d8ac983-4862-4687-b27a-324a4ecb8ae6.jpg",
"https://lequu-server-bucket.s3.ap-northeast-2.amazonaws.com/stickers/ea9a990a-e6e5-4789-9911-a967095d3cdc.jpg",
"https://lequu-server-bucket.s3.ap-northeast-2.amazonaws.com/stickers/38e4509e-61ba-42e7-a823-8b379c1be022.jpg"
"https://lequu-server-bucket.s3.ap-northeast-2.amazonaws.com/stickers/character_1.svg",
"https://lequu-server-bucket.s3.ap-northeast-2.amazonaws.com/stickers/character_2.svg",
"https://lequu-server-bucket.s3.ap-northeast-2.amazonaws.com/stickers/character_3.svg",
"https://lequu-server-bucket.s3.ap-northeast-2.amazonaws.com/stickers/character_4.svg",
"https://lequu-server-bucket.s3.ap-northeast-2.amazonaws.com/stickers/character_5.svg",
"hhttps://lequu-server-bucket.s3.ap-northeast-2.amazonaws.com/stickers/character_6.svg"
);

@Component
Expand Down Expand Up @@ -100,8 +100,8 @@ public void dbInit() {

Sticker sticker1 = Sticker.builder()
.bookId(0L)
.category(ALPHABET)
.stickerImage("https://lequu-server-bucket.s3.ap-northeast-2.amazonaws.com/stickers/8d83b1c1-1e2c-437b-a2f5-e3ce96ce6d35.jpg")
.category(BIRTHDAY)
.stickerImage("https://lequu-server-bucket.s3.ap-northeast-2.amazonaws.com/stickers/birth_1.svg")
.build();
em.persist(sticker1);
for (int i = 0; i < 3; i++) {
Expand Down

0 comments on commit 5dffccb

Please sign in to comment.