summaryrefslogtreecommitdiff
path: root/lib/Travelynx/Command/database.pm
diff options
context:
space:
mode:
authorDerf Null <derf@finalrewind.org>2023-06-04 19:01:02 +0200
committerDerf Null <derf@finalrewind.org>2023-06-04 19:05:20 +0200
commit34665da2a05fa82a51a32bdff6e4904661cb393e (patch)
tree05a1764b3b5c936fa15ccedb5186ddfc6f6a043a /lib/Travelynx/Command/database.pm
parent42252ee96d896e0916c8e019ab090ad0ae3e8edc (diff)
do not accept follows / follow requests by default
Diffstat (limited to 'lib/Travelynx/Command/database.pm')
-rw-r--r--lib/Travelynx/Command/database.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Travelynx/Command/database.pm b/lib/Travelynx/Command/database.pm
index 3878502..a54af43 100644
--- a/lib/Travelynx/Command/database.pm
+++ b/lib/Travelynx/Command/database.pm
@@ -1527,7 +1527,7 @@ my @migrations = (
alter table relations
add column ts timestamptz not null;
alter table users
- add column accept_follows smallint default 1;
+ add column accept_follows smallint default 0;
update schema_version set version = 36;
}
);