From 4716b6c815567caed346480d32a26f5b68345218 Mon Sep 17 00:00:00 2001 From: Meng Zhang Date: Thu, 5 Dec 2024 17:45:30 +0800 Subject: [PATCH] update --- ee/tabby-db/migrations/0039_add-notification-inbox.up.sql | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ee/tabby-db/migrations/0039_add-notification-inbox.up.sql b/ee/tabby-db/migrations/0039_add-notification-inbox.up.sql index 4555055cd905..b6c20cc81482 100644 --- a/ee/tabby-db/migrations/0039_add-notification-inbox.up.sql +++ b/ee/tabby-db/migrations/0039_add-notification-inbox.up.sql @@ -5,9 +5,10 @@ CREATE TABLE notifications ( updated_at TIMESTAMP NOT NULL DEFAULT(DATETIME('now')), -- enum of ADMIN, ALL_USERS - kind: TEXT NOT NULL, + kind TEXT NOT NULL, - content: TEXT NOT NULL, + -- content of notification, in markdown format. + content TEXT NOT NULL, ) CREATE TABLE readed_notifications (