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
|
|
|
|
remove :uri
|
|
|
|
end
|
|
|
|
|
|
|
|
alter table("groups") do
|
|
|
|
remove :uri
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def down do
|
|
|
|
alter table("accounts") do
|
|
|
|
add :uri, :string, null: false, default: "https://"
|
|
|
|
end
|
|
|
|
|
|
|
|
alter table("groups") do
|
|
|
|
add :uri, :string, null: false, default: "https://"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|