mobilizon/priv/repo/migrations/20180614104618_fusion_public_private_key_into_keys_column.exs
Thomas Citharel 7dd7e8fc36
Fix mix format and format migrations too
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>
2019-02-22 14:53:09 +01:00

19 lines
372 B
Elixir

defmodule Mobilizon.Repo.Migrations.FusionPublicPrivateKeyIntoKeysColumn do
use Ecto.Migration
def up do
rename(table(:actors), :private_key, to: :keys)
alter table(:actors) do
remove(:public_key)
end
end
def down do
alter table(:actors) do
rename(:keys, to: :private_key)
add(:public_key, :text, null: true)
end
end
end