From 7567cd6dcd8c959e8b6ee29715055041398c2325 Mon Sep 17 00:00:00 2001 From: usbharu <64310155+usbharu@users.noreply.github.com> Date: Sat, 27 Jan 2024 11:27:04 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=BF=98=E3=82=8C=E3=81=A6=E3=81=84?= =?UTF-8?q?=E3=81=9F=E3=83=97=E3=83=A9=E3=82=A4=E3=83=9E=E3=83=AA=E3=82=AD?= =?UTF-8?q?=E3=83=BC=E3=81=AE=E6=8C=87=E5=AE=9A=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domain/model/notification/ExposedNotificationRepository.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/kotlin/dev/usbharu/hideout/core/domain/model/notification/ExposedNotificationRepository.kt b/src/main/kotlin/dev/usbharu/hideout/core/domain/model/notification/ExposedNotificationRepository.kt index ab3c23b6..9c82f69e 100644 --- a/src/main/kotlin/dev/usbharu/hideout/core/domain/model/notification/ExposedNotificationRepository.kt +++ b/src/main/kotlin/dev/usbharu/hideout/core/domain/model/notification/ExposedNotificationRepository.kt @@ -82,4 +82,6 @@ object Notifications : Table("notifications") { val text = varchar("text", 3000).nullable() val reactionId = long("reaction_id").references(Reactions.id).nullable() val createdAt = timestamp("created_at") + + override val primaryKey: PrimaryKey = PrimaryKey(id) }