mirror of
https://codeberg.org/catask-org/catask.git
synced 2025-04-20 13:53:42 -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,
|
answered BOOLEAN NOT NULL DEFAULT FALSE,
|
||||||
answer_id INT,
|
answer_id INT,
|
||||||
pinned BOOLEAN NOT NULL DEFAULT FALSE,
|
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
|
-- below is reserved for version 1.7.0 or later
|
||||||
-- private BOOLEAN NOT NULL DEFAULT FALSE,
|
-- private BOOLEAN NOT NULL DEFAULT FALSE,
|
||||||
-- user_ip VARBINARY(16) NOT NULL DEFAULT ''
|
-- user_ip VARBINARY(16) NOT NULL DEFAULT ''
|
||||||
|
|
Loading…
Add table
Reference in a new issue