bonfire-app/flavours/cooperation/repo/migrations/20210618094945_peered_uri.exs

14 lines
285 B
Elixir
Raw Normal View History

2021-11-18 22:21:08 +00:00
defmodule Bonfire.Social.Repo.Migrations.PeeredURI do
use Ecto.Migration
import Pointers.Migration
def up do
alter table("bonfire_data_activity_pub_peered") do
2022-09-12 04:34:14 +00:00
Ecto.Migration.add_if_not_exists(:canonical_uri, :text, null: true)
2021-11-18 22:21:08 +00:00
end
end
2022-09-12 04:34:14 +00:00
def down, do: nil
2021-11-18 22:21:08 +00:00
end