Skip to content

Commit c080cda

Browse files
Merge pull request #107 from wafflestudio/fix/categories
Fix/categories
2 parents d132f66 + af07f16 commit c080cda

5 files changed

Lines changed: 6 additions & 50 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.idea/

.idea/compiler.xml

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

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

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

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

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

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

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +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
1414
FROM category_groups cg WHERE cg.name = '모집현황';
1515

1616
INSERT INTO categories (group_id, name, sort_order)
17-
SELECT cg.id, '마감임박', 2
17+
SELECT cg.id, '모집중', 2
1818
FROM category_groups cg WHERE cg.name = '모집현황';
1919

2020
INSERT INTO categories (group_id, name, sort_order)
@@ -45,9 +45,10 @@ SELECT cg.id, '학습/진로상담', 5
4545
FROM category_groups cg WHERE cg.name = '프로그램 유형';
4646

4747
INSERT INTO categories (group_id, name, sort_order)
48-
SELECT cg.id, '레크리에이션', 6
48+
SELECT cg.id, 'OpenLnL', 6
4949
FROM category_groups cg WHERE cg.name = '프로그램 유형';
5050

51+
5152
INSERT INTO categories (group_id, name, sort_order)
5253
SELECT cg.id, '기타', 999
53-
FROM category_groups cg WHERE cg.name = '프로그램 유형';
54+
FROM category_groups cg WHERE cg.name = '프로그램 유형';

0 commit comments

Comments
 (0)