e14007bac5
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
24 lines
418 B
Elixir
24 lines
418 B
Elixir
defmodule Eventos.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
|