aboutsummaryrefslogtreecommitdiff
path: root/priv/repo/migrations
diff options
context:
space:
mode:
authorMaxim Filippov <colixer@gmail.com>2019-01-28 21:31:08 +0300
committerMaxim Filippov <colixer@gmail.com>2019-01-28 21:40:08 +0300
commit50d6183893166b51a400659a38dd657ac84603d6 (patch)
treefa0bcd842ce665917eaf4195b1ea92ebde8614af /priv/repo/migrations
parent009273fd6e4d14601ebd9f02f2fd797716f774ed (diff)
downloadpleroma-50d6183893166b51a400659a38dd657ac84603d6.tar.gz
Split hide_network into hide_followers & hide_followings
Diffstat (limited to 'priv/repo/migrations')
-rw-r--r--priv/repo/migrations/20190128181211_split_hide_network.exs10
1 files changed, 10 insertions, 0 deletions
diff --git a/priv/repo/migrations/20190128181211_split_hide_network.exs b/priv/repo/migrations/20190128181211_split_hide_network.exs
new file mode 100644
index 000000000..2c117dbee
--- /dev/null
+++ b/priv/repo/migrations/20190128181211_split_hide_network.exs
@@ -0,0 +1,10 @@
+defmodule Pleroma.Repo.Migrations.SplitHideNetwork do
+ use Ecto.Migration
+
+ def up do
+ execute("UPDATE users SET info = jsonb_set(jsonb_set(info, '{hide_followers}'::text[], info->'hide_network'), '{hide_followings}'::text[], info->'hide_network')")
+ end
+
+ def down do
+ end
+end