akkoma/priv/repo/migrations/20170321143152_add_ap_id_to_users.exs

10 lines
162 B
Elixir
Raw Normal View History

2017-03-21 16:53:20 +00:00
defmodule Pleroma.Repo.Migrations.AddApIdToUsers do
use Ecto.Migration
def change do
alter table(:users) do
2019-10-08 12:16:39 +00:00
add(:ap_id, :string)
2017-03-21 16:53:20 +00:00
end
end
end