7dd7e8fc36
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>
24 lines
424 B
Elixir
24 lines
424 B
Elixir
defmodule Mobilizon.Repo.Migrations.RemoveUri do
|
|
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
|