X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;ds=inline;f=priv%2Frepo%2Fmigrations%2F20181214121049_add_bookmarks_to_users.exs;h=6228f1bad64785339130592d251806c4dc828f7d;hb=d884087e7c66be0cf08341a3179c1c5e8c6e1def;hp=55e97ae0e47987620c8fe47e7e9680efa9704a9e;hpb=b3b0855456a92351667a50c8ea77f328bded76ca;p=akkoma 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