Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
wsxiaoys committed Dec 5, 2024
1 parent 81cc871 commit a02ff42
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ee/tabby-db/migrations/0039_add-notification-inbox.up.sql
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CREATE TABLE notifications (
updated_at TIMESTAMP NOT NULL DEFAULT(DATETIME('now')),

-- enum of ADMIN, ALL_USERS
kind TEXT NOT NULL,
kind VARCHAR(255) NOT NULL DEFAULT 'admin',

-- content of notification, in markdown format.
content TEXT NOT NULL
Expand Down
Binary file modified ee/tabby-db/schema.sqlite
Binary file not shown.
2 changes: 1 addition & 1 deletion ee/tabby-db/schema/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ CREATE TABLE notifications(
created_at TIMESTAMP NOT NULL DEFAULT(DATETIME('now')),
updated_at TIMESTAMP NOT NULL DEFAULT(DATETIME('now')),
-- enum of ADMIN, ALL_USERS
kind TEXT NOT NULL,
kind VARCHAR(255) NOT NULL DEFAULT 'admin',
-- content of notification, in markdown format.
content TEXT NOT NULL
);
Expand Down

0 comments on commit a02ff42

Please sign in to comment.