Skip to content

Commit

Permalink
feat: vaccination type에 이벤트 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
HyungJu committed May 1, 2024
1 parent c58d1f2 commit ed3637a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ package com.vacgom.backend.inoculation.domain.constants

enum class VaccinationType {
NATION,
EXTRA;
EXTRA,
EVENT,
}
2 changes: 2 additions & 0 deletions src/main/resources/db/migration/V2__add_event.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ALTER TABLE t_vaccination
CHANGE `vaccination_type` `vaccination_type` enum('NATION','EXTRA','EVENT') NULL;

0 comments on commit ed3637a

Please sign in to comment.