summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20181214121049_add_bookmarks_to_users.exs
diff options
context:
space:
mode:
Diffstat (limited to 'priv/repo/migrations/20181214121049_add_bookmarks_to_users.exs')
-rw-r--r--priv/repo/migrations/20181214121049_add_bookmarks_to_users.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/repo/migrations/20181214121049_add_bookmarks_to_users.exs b/priv/repo/migrations/20181214121049_add_bookmarks_to_users.exs
index 55e97ae0e..6228f1bad 100644
--- a/priv/repo/migrations/20181214121049_add_bookmarks_to_users.exs
+++ b/priv/repo/migrations/20181214121049_add_bookmarks_to_users.exs
@@ -3,7 +3,7 @@ defmodule Pleroma.Repo.Migrations.AddBookmarksToUsers do
def change do
alter table(:users) do
- add :bookmarks, {:array, :string}, null: false, default: []
+ add(:bookmarks, {:array, :string}, null: false, default: [])
end
end
end