Add option to modify HTTP pool size
[akkoma] / priv / repo / migrations / 20190413085040_add_signin_and_last_digest_dates_to_user.exs
1 defmodule Pleroma.Repo.Migrations.AddSigninAndLastDigestDatesToUser do
2 use Ecto.Migration
3
4 def change do
5 alter table(:users) do
6 add(:last_digest_emailed_at, :naive_datetime, default: fragment("now()"))
7 end
8 end
9 end