summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20210202110641_add_pinned_objects_to_users.exs
blob: 644527246301b09995a6a31482f9abb7382ba1b2 (plain)
1
2
3
4
5
6
7
8
9
defmodule Pleroma.Repo.Migrations.AddPinnedObjectsToUsers do
  use Ecto.Migration

  def change do
    alter table(:users) do
      add(:pinned_objects, :map)
    end
  end
end