From 5e30751390346bd8323f9b3b24ebeeea6831656f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=A0=95=ED=9A=8C=EC=84=B1?= Date: Mon, 6 Jan 2025 14:21:28 +0900 Subject: [PATCH] =?UTF-8?q?tag=20name=20=EB=8C=80=EC=86=8C=EB=AC=B8?= =?UTF-8?q?=EC=9E=90=20=EA=B5=AC=EB=B6=84=EC=9C=BC=EB=A1=9C=20=EB=B3=80?= =?UTF-8?q?=EA=B2=BD=20(#1016)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/resources/db/migration/V11__add_unique_binary_tag.sql | 1 + 1 file changed, 1 insertion(+) create mode 100644 backend/src/main/resources/db/migration/V11__add_unique_binary_tag.sql diff --git a/backend/src/main/resources/db/migration/V11__add_unique_binary_tag.sql b/backend/src/main/resources/db/migration/V11__add_unique_binary_tag.sql new file mode 100644 index 000000000..ec345e321 --- /dev/null +++ b/backend/src/main/resources/db/migration/V11__add_unique_binary_tag.sql @@ -0,0 +1 @@ +ALTER TABLE tag MODIFY name VARCHAR(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL;