Skip to content

Commit

Permalink
Merge pull request #50 from taco-official/KL-148/도시-데이터-추가
Browse files Browse the repository at this point in the history
feat(KL-148): add city data
  • Loading branch information
idealflower-k authored Aug 16, 2024
2 parents b5acc9c + 0ce886f commit 3e47cb6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
8 changes: 8 additions & 0 deletions src/main/java/taco/klkl/domain/region/enums/CityType.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,14 @@ public enum CityType {
KOTA_KINABALU("코타키나발루"),
KUALA_LUMPUR("쿠알라룸푸르"),

// 괌
TUMON("투몬"),

// 미국
NEW_YORK("뉴욕"),
LOS_ANGELES("로스엔젤레스"),
HAWAII("하와이"),

NONE("");

private final String koreanName;
Expand Down
6 changes: 5 additions & 1 deletion src/main/resources/database/data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@ VALUES (414, 403, '오사카'),
(434, 409, '싱가포르'),
(435, 410, '발리'),
(436, 411, '코타키나발루'),
(437, 411, '쿠알라룸푸르');
(437, 411, '쿠알라룸푸르'),
(448, 412, '투몬'),
(449, 413, '뉴욕'),
(450, 413, '로스엔젤레스'),
(451, 413, '하와이');

/* Category */
INSERT
Expand Down

0 comments on commit 3e47cb6

Please sign in to comment.