WIP: Add backfilling of posts #846

Draft
tudbut wants to merge 19 commits from tudbut/akkoma:develop into develop
Showing only changes of commit f08ca527ff - Show all commits

View file

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