mobilizon.chapril.org-mobil.../priv/repo/migrations/20180530152323_make_actor_public_key_nullable.exs
Thomas Citharel 559c889f1b Rename project to Mobilizon
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2018-10-11 17:37:39 +02:00

16 lines
292 B
Elixir

defmodule Mobilizon.Repo.Migrations.MakeActorPublicKeyNullable do
use Ecto.Migration
def up do
alter table(:actors) do
modify :public_key, :text, null: true
end
end
def down do
alter table(:actors) do
modify :public_key, :text, null: false
end
end
end