mirror of
https://codeberg.org/catask-org/catask.git
synced 2025-04-19 13:23:41 -05:00
add unread
column to schema
This commit is contained in:
parent
1e13fefcc6
commit
e0e492211b
1 changed files with 2 additions and 1 deletions
|
@ -14,7 +14,8 @@ CREATE TABLE IF NOT EXISTS questions (
|
|||
answered BOOLEAN NOT NULL DEFAULT FALSE,
|
||||
answer_id INT,
|
||||
pinned BOOLEAN NOT NULL DEFAULT FALSE,
|
||||
cw VARCHAR(255) NOT NULL DEFAULT ''
|
||||
cw VARCHAR(255) NOT NULL DEFAULT '',
|
||||
unread BOOLEAN NOT NULL DEFAULT TRUE
|
||||
-- below is reserved for version 1.7.0 or later
|
||||
-- private BOOLEAN NOT NULL DEFAULT FALSE,
|
||||
-- user_ip VARBINARY(16) NOT NULL DEFAULT ''
|
||||
|
|
Loading…
Add table
Reference in a new issue