Make User.following a postgres array.
This commit is contained in:
parent
94db9ac4db
commit
f48bc5c3e1
2 changed files with 20 additions and 3 deletions
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue