2018-09-19 06:13:18 +00:00
|
|
|
defmodule Pleroma.Repo.Migrations.UsersAddLastRefreshedAt do
|
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def change do
|
|
|
|
alter table(:users) do
|
2019-03-20 13:16:29 +00:00
|
|
|
add :last_refreshed_at, :naive_datetime_usec
|
2018-09-19 06:13:18 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|