Make User.following a postgres array.

This commit is contained in:
lain 2018-02-21 22:20:29 +01:00
commit f48bc5c3e1
2 changed files with 20 additions and 3 deletions

View file

@ -0,0 +1,18 @@
defmodule Pleroma.Repo.Migrations.MakeFollowingPostgresArray do
use Ecto.Migration
def change do
alter table(:users) do
add :following_temp, {:array, :string}
end
execute """
update users set following_temp = array(select jsonb_array_elements_text(following));
"""
alter table(:users) do
remove :following
end
rename table(:users), :following_temp, to: :following
end
end