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