Skip to content
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

[BE] fix: Flyway 스크립트 DDL 문법 오류 수정 #1071

Merged
merged 1 commit into from
Jan 22, 2025

Conversation

donghoony
Copy link
Contributor

Flyway 스크립트의 문법 오류가 있어 이를 수정합니다. (MySQL에서는 UPDATE문에 FOR를 지원하지 않습니다)
ASIS:
UPDATE question q SET section_id = sq.section_id FROM section_question sq WHERE q.id = sq.question_id;
TOBE:
UPDATE question q JOIN section_question sq ON q.id = sq.question_id SET q.section_id = sq.section_id;

@donghoony donghoony self-assigned this Jan 22, 2025
@donghoony donghoony marked this pull request as ready for review January 22, 2025 13:52
Copy link

Test Results

148 tests  ±0   145 ✅ ±0   4s ⏱️ ±0s
 54 suites ±0     3 💤 ±0 
 54 files   ±0     0 ❌ ±0 

Results for commit 45562c8. ± Comparison against base commit cc8557f.

@donghoony donghoony changed the title [BE] fix: Flyway 스크립트 DDL 오류 수정 [BE] fix: Flyway 스크립트 DDL 문법 오류수정 Jan 22, 2025
@donghoony donghoony changed the title [BE] fix: Flyway 스크립트 DDL 문법 오류수정 [BE] fix: Flyway 스크립트 DDL 문법 오류 수정 Jan 22, 2025
@donghoony donghoony merged commit b1c9169 into develop Jan 22, 2025
6 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants