Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F33103516
20180221210540_make_following_postgres_array.exs
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
606 B
Referenced Files
None
Subscribers
None
20180221210540_make_following_postgres_array.exs
View Options
# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule
Pleroma.Repo.Migrations.MakeFollowingPostgresArray
do
use
Ecto.Migration
def
up
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
def
down
,
do
:
:ok
end
File Metadata
Details
Attached
Mime Type
text/x-ruby
Expires
Tue, Jan 20, 1:56 PM (15 h, 32 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
969718
Default Alt Text
20180221210540_make_following_postgres_array.exs (606 B)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment