mobilizon.chapril.org-mobil.../priv/repo/migrations/20200513142813_add_resources_and_todos_endpoints_to_actor.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

11 lines
258 B
Elixir

defmodule Mobilizon.Storage.Repo.Migrations.AddResourcesAndTodosEndpointsToActor do
use Ecto.Migration
def change do
alter table(:actors) do
add(:resources_url, :string, null: true)
add(:todos_url, :string, null: true)
end
end
end