Исправление ошибки с неверным типом данных в базе

This commit is contained in:
2026-02-20 23:40:11 +02:00
parent d368c590cc
commit 3c9be407de

View File

@@ -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<String> notificationsTokens = new ArrayList<>();