bonfire-app/flavours/cooperation/repo/migrations/20210618094945_peered_uri.exs
Mayel de Borniol e1a9e44894 Rename libs
2023-12-30 22:30:56 +00:00

15 lines
302 B
Elixir

defmodule Bonfire.Social.Repo.Migrations.PeeredURI do
@moduledoc false
use Ecto.Migration
import Needle.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