akkoma/priv/repo/migrations/20170321143152_add_ap_id_to...

10 lines
162 B
Elixir

defmodule Pleroma.Repo.Migrations.AddApIdToUsers do
use Ecto.Migration
def change do
alter table(:users) do
add(:ap_id, :string)
end
end
end