From 24c6fbc506051f7133ffdac09c2fc207d354420b Mon Sep 17 00:00:00 2001 From: seonghyeok Date: Wed, 18 Feb 2026 14:24:46 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=EB=88=84=EB=9D=BD=EB=90=9C=20?= =?UTF-8?q?=EC=A0=9C=EC=95=BD=20=EC=A1=B0=EA=B1=B4=EC=9D=84=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80=ED=95=98=EB=8A=94=20=EC=8A=A4=ED=81=AC=EB=A6=BD?= =?UTF-8?q?=ED=8A=B8=20=EC=9E=91=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...add_DELE_and_ETC_to_language_requirement.sql | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/main/resources/db/migration/V46__add_DELE_and_ETC_to_language_requirement.sql diff --git a/src/main/resources/db/migration/V46__add_DELE_and_ETC_to_language_requirement.sql b/src/main/resources/db/migration/V46__add_DELE_and_ETC_to_language_requirement.sql new file mode 100644 index 000000000..c4145c3ee --- /dev/null +++ b/src/main/resources/db/migration/V46__add_DELE_and_ETC_to_language_requirement.sql @@ -0,0 +1,17 @@ +ALTER TABLE language_requirement + MODIFY COLUMN language_test_type ENUM( + 'CEFR', + 'DALF', + 'DELF', + 'DELE', + 'DUOLINGO', + 'IELTS', + 'JLPT', + 'NEW_HSK', + 'TCF', + 'TEF', + 'TOEFL_IBT', + 'TOEFL_ITP', + 'TOEIC', + 'ETC' + ) NOT NULL;