Use best-effort guessing the url of the outbox for known users

This commit is contained in:
TudbuT 2024-10-27 07:34:59 +01:00 committed by tudbut
parent 134d395a74
commit f08ca527ff

View file

@ -5,6 +5,8 @@ def up do
alter table(:users) do
add_if_not_exists(:outbox, :text)
end
execute("update users set outbox = replace(inbox, 'inbox', 'outbox')")
end
def down do