From 5f50f4fb280b7c96dc3f7fe4d499d31d8b370955 Mon Sep 17 00:00:00 2001 From: usbharu <64310155+usbharu@users.noreply.github.com> Date: Wed, 15 Nov 2023 13:07:42 +0900 Subject: [PATCH] =?UTF-8?q?test:=20SQL=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...ィア付き投稿はattachmentにDocumentとして画像が存在する.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/intTest/resources/sql/note/メディア付き投稿はattachmentにDocumentとして画像が存在する.sql b/src/intTest/resources/sql/note/メディア付き投稿はattachmentにDocumentとして画像が存在する.sql index 9da287af..01352445 100644 --- a/src/intTest/resources/sql/note/メディア付き投稿はattachmentにDocumentとして画像が存在する.sql +++ b/src/intTest/resources/sql/note/メディア付き投稿はattachmentにDocumentとして画像が存在する.sql @@ -13,9 +13,9 @@ insert into POSTS (ID, "userId", OVERVIEW, TEXT, "createdAt", VISIBILITY, URL, " VALUES (1242, 11, null, 'test post', 12345680, 0, 'https://example.com/users/test-user11/posts/1242', null, null, false, 'https://example.com/users/test-user11/posts/1242'); -insert into MEDIA (ID, NAME, URL, REMOTE_URL, THUMBNAIL_URL, TYPE, BLURHASH) -VALUES (1, 'test-media', 'https://example.com/media/test-media.png', null, null, 0, null), - (2, 'test-media2', 'https://example.com/media/test-media2.png', null, null, 0, null); +insert into MEDIA (ID, NAME, URL, REMOTE_URL, THUMBNAIL_URL, TYPE, BLURHASH, MIME_TYPE) +VALUES (1, 'test-media', 'https://example.com/media/test-media.png', null, null, 0, null, 'image/png'), + (2, 'test-media2', 'https://example.com/media/test-media2.png', null, null, 0, null, 'image/png'); insert into POSTSMEDIA(POST_ID, MEDIA_ID) VALUES (1242, 1),