-
Notifications
You must be signed in to change notification settings - Fork 0
fix: 누락된 Flyway migration 파일 복구 #396
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
pooreumjung
merged 4 commits into
develop
from
fix/#395-restore-missing-flyway-migrations
Jul 8, 2026
Merged
Changes from 2 commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -50,3 +50,5 @@ out/ | |
| ### DS File ### | ||
| .DS_Store | ||
| */.DS_Store | ||
|
|
||
| .claude/settings.local.json | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,4 @@ | ||
| plugins { | ||
| id 'org.gradle.toolchains.foojay-resolver-convention' version '0.10.0' | ||
| } | ||
| rootProject.name = 'eat-ssu' |
49 changes: 49 additions & 0 deletions
49
src/main/resources/db/migration/V10__populate_i18n_college.sql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| UPDATE college | ||
| SET name_ja = '人文学部', | ||
| name_vi = 'Khoa Nhân văn' | ||
| WHERE college_id = 1; | ||
|
|
||
| UPDATE college | ||
| SET name_ja = '自然科学部', | ||
| name_vi = 'Khoa Khoa học Tự nhiên' | ||
| WHERE college_id = 2; | ||
|
|
||
| UPDATE college | ||
| SET name_ja = '法学部', | ||
| name_vi = 'Khoa Luật' | ||
| WHERE college_id = 3; | ||
|
|
||
| UPDATE college | ||
| SET name_ja = '社会科学部', | ||
| name_vi = 'Khoa Khoa học Xã hội' | ||
| WHERE college_id = 4; | ||
|
|
||
| UPDATE college | ||
| SET name_ja = '経済・国際商学部', | ||
| name_vi = 'Khoa Kinh tế và Thương mại Quốc tế' | ||
| WHERE college_id = 5; | ||
|
|
||
| UPDATE college | ||
| SET name_ja = '経営学部', | ||
| name_vi = 'Khoa Quản trị Kinh doanh' | ||
| WHERE college_id = 6; | ||
|
|
||
| UPDATE college | ||
| SET name_ja = '工学部', | ||
| name_vi = 'Khoa Kỹ thuật' | ||
| WHERE college_id = 7; | ||
|
|
||
| UPDATE college | ||
| SET name_ja = 'IT学部', | ||
| name_vi = 'Khoa IT' | ||
| WHERE college_id = 8; | ||
|
|
||
| UPDATE college | ||
| SET name_ja = '次世代半導体学科', | ||
| name_vi = 'Khoa Bán dẫn Thế hệ Mới' | ||
| WHERE college_id = 9; | ||
|
|
||
| UPDATE college | ||
| SET name_ja = 'リベラル・スタディーズ学部', | ||
| name_vi = 'Khoa Nghiên cứu Tự do' | ||
| WHERE college_id = 10; |
93 changes: 93 additions & 0 deletions
93
src/main/resources/db/migration/V11__populate_i18n_department.sql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,93 @@ | ||
| UPDATE department SET name_ja = 'キリスト教学', name_vi = 'Cơ đốc học' WHERE department_id | ||
| = 1; | ||
| UPDATE department SET name_ja = '韓国語文学', name_vi = 'Ngôn ngữ và Văn học Hàn Quốc' | ||
| WHERE department_id = 2; | ||
| UPDATE department SET name_ja = '英語英文学', name_vi = 'Ngôn ngữ và Văn học Anh' WHERE | ||
| department_id = 3; | ||
| UPDATE department SET name_ja = 'ドイツ語文学', name_vi = 'Ngôn ngữ và Văn học Đức' WHERE | ||
| department_id = 4; | ||
| UPDATE department SET name_ja = 'フランス語文学', name_vi = 'Ngôn ngữ và Văn học Pháp' | ||
| WHERE department_id = 5; | ||
| UPDATE department SET name_ja = '中国語文学', name_vi = 'Ngôn ngữ và Văn học Trung Quốc' | ||
| WHERE department_id = 6; | ||
| UPDATE department SET name_ja = '日本語文学', name_vi = 'Ngôn ngữ và Văn học Nhật Bản' | ||
| WHERE department_id = 7; | ||
| UPDATE department SET name_ja = '哲学', name_vi = 'Triết học' WHERE department_id = 8; | ||
| UPDATE department SET name_ja = '歴史学', name_vi = 'Lịch sử' WHERE department_id = 9; | ||
| UPDATE department SET name_ja = '文芸創作', name_vi = 'Sáng tác Văn học' WHERE | ||
| department_id = 10; | ||
| UPDATE department SET name_ja = '映画芸術', name_vi = 'Nghệ thuật Điện ảnh' WHERE | ||
| department_id = 11; | ||
| UPDATE department SET name_ja = 'スポーツ', name_vi = 'Thể thao' WHERE department_id = 12; | ||
| UPDATE department SET name_ja = '数学', name_vi = 'Toán học' WHERE department_id = 18; | ||
| UPDATE department SET name_ja = '物理学', name_vi = 'Vật lý' WHERE department_id = 19; | ||
| UPDATE department SET name_ja = '化学', name_vi = 'Hóa học' WHERE department_id = 20; | ||
| UPDATE department SET name_ja = NULL, name_vi = NULL WHERE department_id = 21; | ||
| UPDATE department SET name_ja = '生命医科学', name_vi = 'Khoa học Y sinh' WHERE | ||
| department_id = 22; | ||
| UPDATE department SET name_ja = '法学', name_vi = 'Luật' WHERE department_id = 23; | ||
| UPDATE department SET name_ja = 'グローバル法学', name_vi = 'Luật Toàn cầu' WHERE | ||
| department_id = 24; | ||
| UPDATE department SET name_ja = '社会福祉学', name_vi = 'Phúc lợi Xã hội' WHERE | ||
| department_id = 25; | ||
| UPDATE department SET name_ja = '行政学', name_vi = 'Hành chính Công' WHERE department_id = | ||
| 26; | ||
| UPDATE department SET name_ja = '政治学・国際関係', name_vi = 'Khoa học Chính trị và Quan | ||
| hệ Quốc tế' WHERE department_id = 27; | ||
| UPDATE department SET name_ja = '情報社会学', name_vi = 'Xã hội học Thông tin' WHERE | ||
| department_id = 28; | ||
| UPDATE department SET name_ja = 'ジャーナリズム・広報・広告', name_vi = 'Báo chí, Quan hệ | ||
| Công chúng và Quảng cáo' WHERE department_id = 29; | ||
|
pooreumjung marked this conversation as resolved.
Outdated
|
||
| UPDATE department SET name_ja = '生涯教育', name_vi = 'Giáo dục Suốt đời' WHERE | ||
| department_id = 30; | ||
| UPDATE department SET name_ja = '経済学', name_vi = 'Kinh tế học' WHERE department_id = 31; | ||
| UPDATE department SET name_ja = 'グローバル商学', name_vi = 'Thương mại Toàn cầu' WHERE | ||
| department_id = 32; | ||
| UPDATE department SET name_ja = 'エコファイナンス', name_vi = 'Tài chính Kinh tế' WHERE | ||
| department_id = 33; | ||
| UPDATE department SET name_ja = '国際貿易・取引', name_vi = 'Thương mại và Giao dịch Quốc | ||
| tế' WHERE department_id = 34; | ||
|
pooreumjung marked this conversation as resolved.
Outdated
|
||
| UPDATE department SET name_ja = '経営学', name_vi = 'Quản trị Kinh doanh' WHERE | ||
| department_id = 35; | ||
| UPDATE department SET name_ja = 'ベンチャー・中小企業', name_vi = 'Khởi nghiệp và Doanh | ||
| nghiệp Nhỏ' WHERE department_id = 36; | ||
|
pooreumjung marked this conversation as resolved.
Outdated
|
||
| UPDATE department SET name_ja = '会計学', name_vi = 'Kế toán' WHERE department_id = 37; | ||
| UPDATE department SET name_ja = '金融学', name_vi = 'Tài chính' WHERE department_id = 38; | ||
| UPDATE department SET name_ja = 'ベンチャー経営', name_vi = 'Quản trị Khởi nghiệp' WHERE | ||
| department_id = 39; | ||
| UPDATE department SET name_ja = 'イノベーション経営', name_vi = 'Quản trị Đổi mới' WHERE | ||
| department_id = 40; | ||
| UPDATE department SET name_ja = '福祉経営', name_vi = 'Quản trị Phúc lợi' WHERE | ||
| department_id = 41; | ||
| UPDATE department SET name_ja = '会計・税務', name_vi = 'Kế toán và Thuế' WHERE | ||
| department_id = 42; | ||
|
pooreumjung marked this conversation as resolved.
Outdated
|
||
| UPDATE department SET name_ja = '化学工学', name_vi = 'Kỹ thuật Hóa học' WHERE | ||
| department_id = 43; | ||
| UPDATE department SET name_ja = '材料科学工学', name_vi = 'Khoa học và Kỹ thuật Vật liệu' | ||
| WHERE department_id = 44; | ||
| UPDATE department SET name_ja = '電気工学', name_vi = 'Kỹ thuật Điện' WHERE department_id = | ||
| 45; | ||
| UPDATE department SET name_ja = '機械工学', name_vi = 'Kỹ thuật Cơ khí' WHERE department_id | ||
| = 46; | ||
| UPDATE department SET name_ja = NULL, name_vi = NULL WHERE department_id = 47; | ||
| UPDATE department SET name_ja = '建築学', name_vi = 'Kiến trúc' WHERE department_id = 48; | ||
| UPDATE department SET name_ja = 'コンピュータ科学工学', name_vi = 'Khoa học và Kỹ thuật Máy | ||
| tính' WHERE department_id = 49; | ||
|
pooreumjung marked this conversation as resolved.
Outdated
|
||
| UPDATE department SET name_ja = '電子工学(電子工学専攻)', name_vi = 'Kỹ thuật Điện tử | ||
| (chuyên ngành Kỹ thuật Điện tử)' WHERE department_id = 50; | ||
|
pooreumjung marked this conversation as resolved.
Outdated
|
||
| UPDATE department SET name_ja = '電子工学(IT融合専攻)', name_vi = 'Kỹ thuật Điện tử | ||
| (chuyên ngành Hội tụ IT)' WHERE department_id = 51; | ||
|
pooreumjung marked this conversation as resolved.
Outdated
|
||
| UPDATE department SET name_ja = 'グローバルメディア学部', name_vi = 'Khoa Truyền thông Toàn | ||
| cầu' WHERE department_id = 52; | ||
|
pooreumjung marked this conversation as resolved.
Outdated
|
||
| UPDATE department SET name_ja = 'ソフトウェア', name_vi = 'Phần mềm' WHERE department_id = | ||
| 53; | ||
| UPDATE department SET name_ja = 'AI融合', name_vi = 'Hội tụ AI' WHERE department_id = 54; | ||
| UPDATE department SET name_ja = 'デジタルメディア', name_vi = 'Truyền thông Kỹ thuật số' | ||
| WHERE department_id = 55; | ||
| UPDATE department SET name_ja = NULL, name_vi = NULL WHERE department_id = 56; | ||
| UPDATE department SET name_ja = '次世代半導体', name_vi = 'Bán dẫn Thế hệ Mới' WHERE | ||
| department_id = 57; | ||
| UPDATE department SET name_ja = 'リベラル・スタディーズ', name_vi = 'Nghiên cứu Tự do' | ||
| WHERE department_id = 58; | ||
| UPDATE department SET name_ja = 'AIソフトウェア', name_vi = 'Phần mềm AI' WHERE | ||
| department_id = 59; | ||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.