From 2c42830b4a8a671a8e1b2cd7cc1c84ffb649bf6c Mon Sep 17 00:00:00 2001 From: Minjae Chung Date: Sat, 21 Feb 2026 22:13:16 +0900 Subject: [PATCH] =?UTF-8?q?[fix]=20profile=5Fimage=20=EC=BB=AC=EB=9F=BC=20?= =?UTF-8?q?VARCHAR(255)=20=E2=86=92=20TEXT=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../resources/db/migration/V6__alter_profile_image_to_text.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/main/resources/db/migration/V6__alter_profile_image_to_text.sql diff --git a/src/main/resources/db/migration/V6__alter_profile_image_to_text.sql b/src/main/resources/db/migration/V6__alter_profile_image_to_text.sql new file mode 100644 index 0000000..7f51749 --- /dev/null +++ b/src/main/resources/db/migration/V6__alter_profile_image_to_text.sql @@ -0,0 +1 @@ +ALTER TABLE users MODIFY COLUMN profile_image TEXT;