mobilizon.chapril.org-mobil.../priv/repo/migrations/20200219152611_add_members_endpoint_to_actors.exs
Thomas Citharel 4144e9ffd0
Introduce group basic federation, event new page and notifications
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2020-06-03 16:01:26 +02:00

16 lines
283 B
Elixir

defmodule Mobilizon.Storage.Repo.Migrations.AddMembersEndpointToActors do
use Ecto.Migration
def up do
alter table(:actors) do
add(:members_url, :string, null: true)
end
end
def down do
alter table(:actors) do
remove(:members_url)
end
end
end