MastoAPI: Profile directory
[akkoma] / priv / repo / migrations / 20211222165256_add_last_status_at_to_users.exs
1 defmodule Pleroma.Repo.Migrations.AddLastStatusAtToUsers do
2 use Ecto.Migration
3
4 def change do
5 alter table(:users) do
6 add(:last_status_at, :naive_datetime)
7 end
8
9 create_if_not_exists(index(:users, [:last_status_at]))
10 end
11 end