summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20170321143152_add_ap_id_to_users.exs
blob: 38ceb87fd69071d1d763efa89d8816f6d42c71ea (plain)
1
2
3
4
5
6
7
8
9
defmodule Pleroma.Repo.Migrations.AddApIdToUsers do
  use Ecto.Migration

  def change do
    alter table(:users) do
      add(:ap_id, :string)
    end
  end
end