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