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 (