X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=priv%2Frepo%2Fmigrations%2F20181214121049_add_bookmarks_to_users.exs;h=6228f1bad64785339130592d251806c4dc828f7d;hb=58f9ce0debb080fe74753a2d068499f0eeab09fc;hp=55e97ae0e47987620c8fe47e7e9680efa9704a9e;hpb=0340fcaecadae858b9c8fe39cc18bc25aef3e495;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