summaryrefslogtreecommitdiff
path: root/util/sql/schema.sql
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2019-10-08 16:02:23 +0200
committerYorhel <git@yorhel.nl>2019-10-10 16:40:24 +0200
commit4c1dfc8bb62171c4c21057c47f238c8747bac3f8 (patch)
tree6d62188bd3081015e19deda67842a1a0e77b7543 /util/sql/schema.sql
parent22be42adddc028f0332f5635249db97bd098bba6 (diff)
rewards: Add user settings
They don't do anything yet.
Diffstat (limited to 'util/sql/schema.sql')
-rw-r--r--util/sql/schema.sql11
1 files changed, 10 insertions, 1 deletions
diff --git a/util/sql/schema.sql b/util/sql/schema.sql
index 7db233d1..a3c65c7b 100644
--- a/util/sql/schema.sql
+++ b/util/sql/schema.sql
@@ -734,7 +734,16 @@ CREATE TABLE users (
tags_ero boolean NOT NULL DEFAULT FALSE,
tags_tech boolean NOT NULL DEFAULT TRUE,
spoilers smallint NOT NULL DEFAULT 0,
- traits_sexual boolean NOT NULL DEFAULT FALSE
+ traits_sexual boolean NOT NULL DEFAULT FALSE,
+ nodistract_can boolean NOT NULL DEFAULT FALSE,
+ nodistract_noads boolean NOT NULL DEFAULT FALSE,
+ nodistract_nofancy boolean NOT NULL DEFAULT FALSE,
+ support_can boolean NOT NULL DEFAULT FALSE,
+ support_enabled boolean NOT NULL DEFAULT FALSE,
+ uniname_can boolean NOT NULL DEFAULT FALSE,
+ uniname text NOT NULL DEFAULT '',
+ pubskin_can boolean NOT NULL DEFAULT FALSE,
+ pubskin_enabled boolean NOT NULL DEFAULT FALSE
);
-- vn