Skip to content

Commit a5ac869

Browse files
오수현오수현
authored andcommitted
add: 모집대기 category
1 parent 1f1d7d2 commit a5ac869

2 files changed

Lines changed: 5 additions & 14 deletions

File tree

.idea/compiler.xml

Lines changed: 0 additions & 13 deletions
This file was deleted.

hangsha/src/main/resources/db/migration/V5__seed_categories.sql

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@ INSERT INTO category_groups (name, sort_order) VALUES
1010
-- 모집현황 categories seed
1111
-- ===============================
1212
INSERT INTO categories (group_id, name, sort_order)
13-
SELECT cg.id, '모집중', 1
13+
SELECT cg.id, '모집대기', 1
14+
FROM category_groups cg WHERE cg.name = '모집현황';
15+
16+
INSERT INTO categories (group_id, name, sort_order)
17+
SELECT cg.id, '모집중', 2
1418
FROM category_groups cg WHERE cg.name = '모집현황';
1519

1620
INSERT INTO categories (group_id, name, sort_order)

0 commit comments

Comments
 (0)