mobilizon/priv/repo/migrations/20180702150922_add_address_type.exs
Thomas Citharel 7dd7e8fc36
Fix mix format and format migrations too
Signed-off-by: Thomas Citharel <tcit@tcit.fr>

Fix credo warnings

Signed-off-by: Thomas Citharel <tcit@tcit.fr>

Show elixir version

Signed-off-by: Thomas Citharel <tcit@tcit.fr>

Also lint migrations

Signed-off-by: Thomas Citharel <tcit@tcit.fr>

Reset allow failure to false

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2019-02-22 14:53:09 +01:00

32 lines
785 B
Elixir

defmodule Mobilizon.Repo.Migrations.AddAddressType do
use Ecto.Migration
def up do
alter table(:events) do
add(:online_address, :string)
add(:phone, :string)
end
drop(constraint(:events, "events_address_id_fkey"))
rename(table(:events), :address_id, to: :physical_address_id)
alter table(:events) do
modify(:physical_address_id, references(:addresses, on_delete: :nothing))
end
end
def down do
alter table(:events) do
remove(:online_address)
remove(:phone)
end
drop(constraint(:events, "events_physical_address_id_fkey"))
rename(table(:events), :physical_address_id, to: :address_id)
alter table(:events) do
modify(:address_id, references(:addresses, on_delete: :nothing))
end
end
end