user: implement dynamic refresh of profiles (gets rid of need for fix_ap_users task)
This commit is contained in:
parent
f2727e23ee
commit
c9f6eb9a41
2 changed files with 28 additions and 2 deletions
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue