summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20181214121049_add_bookmarks_to_users.exs
blob: 55e97ae0e47987620c8fe47e7e9680efa9704a9e (plain)
1
2
3
4
5
6
7
8
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