properly check ignore_active value in schema
This commit is contained in:
parent
5390181cfa
commit
3a4e537828
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ CREATE TABLE users (
|
||||||
use_embed INTEGER NOT NULL DEFAULT 1 CHECK(use_embed IN (0, 1)),
|
use_embed INTEGER NOT NULL DEFAULT 1 CHECK(use_embed IN (0, 1)),
|
||||||
notify_self INTEGER NOT NULL DEFAULT 0 CHECK(notify_self IN (0, 1)),
|
notify_self INTEGER NOT NULL DEFAULT 0 CHECK(notify_self IN (0, 1)),
|
||||||
bots_notify INTEGER NOT NULL DEFAULT 0 CHECK(bots_notify IN (0, 1)),
|
bots_notify INTEGER NOT NULL DEFAULT 0 CHECK(bots_notify IN (0, 1)),
|
||||||
ignore_active INTEGER NOT NULL DEFAULT 0 CHECK(bots_notify IN (0, 1))
|
ignore_active INTEGER NOT NULL DEFAULT 0 CHECK(ignore_active IN (0, 1))
|
||||||
)
|
)
|
||||||
WITHOUT ROWID;
|
WITHOUT ROWID;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue