2018-10-11 17:37:39 +02:00
|
|
|
defmodule Mobilizon.Repo.Migrations.RemoveUri do
|
2018-05-17 11:32:23 +02:00
|
|
|
use Ecto.Migration
|
|
|
|
|
|
|
|
def up do
|
|
|
|
alter table("accounts") do
|
2019-02-22 14:18:52 +01:00
|
|
|
remove(:uri)
|
2018-05-17 11:32:23 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
alter table("groups") do
|
2019-02-22 14:18:52 +01:00
|
|
|
remove(:uri)
|
2018-05-17 11:32:23 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def down do
|
|
|
|
alter table("accounts") do
|
2019-02-22 14:18:52 +01:00
|
|
|
add(:uri, :string, null: false, default: "https://")
|
2018-05-17 11:32:23 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
alter table("groups") do
|
2019-02-22 14:18:52 +01:00
|
|
|
add(:uri, :string, null: false, default: "https://")
|
2018-05-17 11:32:23 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|