update schema

This commit is contained in:
2026-01-12 19:37:45 +03:00
parent dd38abc9b0
commit 8fbc8e43db
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ export const messagesTable = sqliteTable("messages", {
chatId: int().notNull(),
replyToMessageId: int(),
fromId: int().notNull(),
text: text().notNull(),
text: text(),
date: int().notNull(),
});