From 3c9be407de63e02ae0290b82b85dc739e9d55687 Mon Sep 17 00:00:00 2001 From: Royce59 Date: Fri, 20 Feb 2026 23:40:11 +0200 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D0=B8?= =?UTF-8?q?=20=D1=81=20=D0=BD=D0=B5=D0=B2=D0=B5=D1=80=D0=BD=D1=8B=D0=BC=20?= =?UTF-8?q?=D1=82=D0=B8=D0=BF=D0=BE=D0=BC=20=D0=B4=D0=B0=D0=BD=D0=BD=D1=8B?= =?UTF-8?q?=D1=85=20=D0=B2=20=D0=B1=D0=B0=D0=B7=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/im/rosetta/database/entity/User.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/im/rosetta/database/entity/User.java b/src/main/java/im/rosetta/database/entity/User.java index 3e77f3c..aea18a2 100644 --- a/src/main/java/im/rosetta/database/entity/User.java +++ b/src/main/java/im/rosetta/database/entity/User.java @@ -41,7 +41,7 @@ public class User extends CreateUpdateEntity { private String publicKey; @Convert(converter = StringListConverter.class) - @Column(name = "notificationsTokens", nullable = false) + @Column(name = "notificationsTokens", nullable = false, columnDefinition = "TEXT") private List notificationsTokens = new ArrayList<>();