From b4b8eaf61cfb0bd6df8fe1cf0d00e55be13dd1f5 Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Wed, 15 Jan 2020 14:24:55 -0600 Subject: anti-harassment: add option to toggle whether to allow follows/packmate requests from accounts you've never interacted with before; default to off --- db/structure.sql | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'db/structure.sql') diff --git a/db/structure.sql b/db/structure.sql index 06dafb256..e3ba0572e 100644 --- a/db/structure.sql +++ b/db/structure.sql @@ -2429,7 +2429,8 @@ CREATE TABLE public.users ( media_only boolean DEFAULT false NOT NULL, filter_undescribed boolean DEFAULT false NOT NULL, filters_enabled boolean DEFAULT false NOT NULL, - monsterfork_api smallint DEFAULT 2 NOT NULL + monsterfork_api smallint DEFAULT 2 NOT NULL, + allow_unknown_follows boolean DEFAULT false NOT NULL ); @@ -5468,6 +5469,7 @@ INSERT INTO "schema_migrations" (version) VALUES ('20200110221920'), ('20200111042543'), ('20200114011918'), -('20200114030940'); +('20200114030940'), +('20200115201524'); -- cgit