Skip to content

Commit

Permalink
fix: 2025년 1학기 업데이트 쿼리 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Soundbar91 committed Jan 14, 2025
1 parent 1591dc6 commit e20604e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/resources/db/migration/V109__alter__semester.sql
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ update semester set year = 2024, term = 'FIRST' where semester = '20241';
update semester set year = 2024, term = 'SECOND' where semester = '20242';
update semester set year = 2024, term = 'SUMMER' where semester = '2024-여름';
update semester set year = 2024, term = 'WINTER' where semester = '2024-겨울';
update semester set year = 2025, term = 'FIRST' where semester = '20251';

ALTER TABLE semester
MODIFY COLUMN year INT UNSIGNED NOT NULL,
MODIFY COLUMN term VARCHAR(20) NOT NULL;
MODIFY COLUMN term VARCHAR(20) NOT NULL;

0 comments on commit e20604e

Please sign in to comment.