bonfire-app/flavours/cooperation/repo/migrations/20210618094945_peered_uri.exs
Mayel de Borniol 0ef85e77f9 auto-format
2022-09-12 16:34:14 +12:00

14 lines
285 B
Elixir

defmodule Bonfire.Social.Repo.Migrations.PeeredURI do
use Ecto.Migration
import Pointers.Migration
def up do
alter table("bonfire_data_activity_pub_peered") do
Ecto.Migration.add_if_not_exists(:canonical_uri, :text, null: true)
end
end
def down, do: nil
end