Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2018-05-17 11:32:23 +02:00
parent 2c1abe5e19
commit e14007bac5
45 changed files with 2916 additions and 111 deletions

View File

@@ -0,0 +1,23 @@
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