mobilizon.chapril.org-mobil.../priv/repo/migrations/20200214135231_add_last_ref...

10 lines
215 B
Elixir

defmodule Mobilizon.Storage.Repo.Migrations.AddLastRefreshedAtToActors do
use Ecto.Migration
def change do
alter table(:actors) do
add(:last_refreshed_at, :utc_datetime, null: true)
end
end
end