-
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.
NO-JIRA--chore : 애플리케이션 실행시 data.sql실행하도록 변경
- Loading branch information
1 parent
f7d099e
commit 7d65bbe
Showing
4 changed files
with
30 additions
and
5 deletions.
There are no files selected for viewing
14 changes: 10 additions & 4 deletions
14
src/main/java/org/prgrms/nabimarketbe/domain/category/entity/Category.java
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
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 |
---|---|---|
@@ -0,0 +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'); |