bonfire-app/flavours/cooperation/repo/migrations/20220903031117_add_payment_id_and_payment_provider.exs
Mayel de Borniol b59d146cab add Rauversion
2022-09-27 11:49:20 +13:00

12 lines
307 B
Elixir

defmodule Rauversion.Repo.Migrations.AddPaymentIdAndPaymentProvider do
use Ecto.Migration
def change do
alter table(:purchase_orders) do
add(:payment_id, :string)
add(:payment_provider, :string)
# add :payment_, references(:purchase_orders, on_delete: :nothing)
end
end
end