user: implement dynamic refresh of profiles (gets rid of need for fix_ap_users task)

This commit is contained in:
William Pitcock 2018-09-19 06:13:18 +00:00 committed by kaniini
commit c9f6eb9a41
2 changed files with 28 additions and 2 deletions

View file

@ -0,0 +1,9 @@
defmodule Pleroma.Repo.Migrations.UsersAddLastRefreshedAt do
use Ecto.Migration
def change do
alter table(:users) do
add :last_refreshed_at, :naive_datetime
end
end
end