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