-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NABI-253--hotfix : category 중복 insert 해결
- Loading branch information
1 parent
2208207
commit f3b4911
Showing
3 changed files
with
40 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
insert into categories(category_name) values ('MALE_CLOTHES'); | ||
insert into categories(category_name) values ('FEMALE_CLOTHES'); | ||
insert into categories(category_name) values ('GOODS_ACCESSORY'); | ||
insert into categories(category_name) values ('SHOES'); | ||
insert into categories(category_name) values ('SPORTS'); | ||
insert into categories(category_name) values ('BOOKS'); | ||
insert into categories(category_name) values ('ELECTRONICS'); | ||
insert into categories(category_name) values ('FURNITURE_INTERIOR'); | ||
insert into categories(category_name) values ('HOME_ELECTRONICS'); | ||
insert ignore into categories(category_name) values ('MALE_CLOTHES'); | ||
insert ignore into categories(category_name) values ('FEMALE_CLOTHES'); | ||
insert ignore into categories(category_name) values ('GOODS_ACCESSORY'); | ||
insert ignore into categories(category_name) values ('SHOES'); | ||
insert ignore into categories(category_name) values ('SPORTS'); | ||
insert ignore into categories(category_name) values ('BOOKS'); | ||
insert ignore into categories(category_name) values ('ELECTRONICS'); | ||
insert ignore into categories(category_name) values ('FURNITURE_INTERIOR'); | ||
insert ignore into categories(category_name) values ('HOME_ELECTRONICS'); |