mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-26 01:38:36 +00:00
559c889f1b
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
23 lines
420 B
Elixir
23 lines
420 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
|