Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
1 change: 0 additions & 1 deletion Remoa-BE
Submodule Remoa-BE deleted from 273210
10 changes: 5 additions & 5 deletions src/main/java/Remoa/BE/config/DbInit.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ public void initCategories() {
//do nothing
log.info("==========Categories are already set==========");
} else {
Category idea = new Category("idea");
Category marketing = new Category("marketing");
Category design = new Category("design");
Category video = new Category("video");
Category etc = new Category("etc");
Category idea = new Category("idea"); //기획 아이디어
Category marketing = new Category("marketing"); //광고 마케팅
Category design = new Category("design"); //디자인, 사진
Category video = new Category("video"); //영상
Category etc = new Category("etc"); //기타 아이디어
this.categoryService.persistCategory(idea, marketing, design, video, etc);
log.info("==========Setting Categories completely==========");
}
Expand Down