summaryrefslogtreecommitdiff
path: root/priv
diff options
context:
space:
mode:
authorHaelwenn <contact+git.pleroma.social@hacktivis.me>2019-01-31 10:16:11 +0000
committerHaelwenn <contact+git.pleroma.social@hacktivis.me>2019-01-31 10:16:11 +0000
commit00d43333735acbcadc1dd04ff793f4ce6e8eecb1 (patch)
tree27959dec7a5ae46c194ed7b47156e4877a736a0b /priv
parent5f40f4f74d96da7b54394e8d6fa29f00cd0c63fd (diff)
parentcda1470e02100bfcdcbd128fd08d0af64dca7271 (diff)
downloadpleroma-00d43333735acbcadc1dd04ff793f4ce6e8eecb1.tar.gz
pleroma-00d43333735acbcadc1dd04ff793f4ce6e8eecb1.zip
Merge branch 'features/glitch-soc-frontend' into 'develop'
Features/glitch soc frontend See merge request pleroma/pleroma!192
Diffstat (limited to 'priv')
-rw-r--r--priv/repo/migrations/20181214121049_add_bookmarks_to_users.exs9
1 files changed, 9 insertions, 0 deletions
diff --git a/priv/repo/migrations/20181214121049_add_bookmarks_to_users.exs b/priv/repo/migrations/20181214121049_add_bookmarks_to_users.exs
new file mode 100644
index 000000000..55e97ae0e
--- /dev/null
+++ b/priv/repo/migrations/20181214121049_add_bookmarks_to_users.exs
@@ -0,0 +1,9 @@
+defmodule Pleroma.Repo.Migrations.AddBookmarksToUsers do
+ use Ecto.Migration
+
+ def change do
+ alter table(:users) do
+ add :bookmarks, {:array, :string}, null: false, default: []
+ end
+ end
+end