Fork of Pleroma with site-specific changes and feature branches https://git.pleroma.social/pleroma/pleroma
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

10 řádky
335B

  1. defmodule Pleroma.Repo.Migrations.AddIdContraintsToActivitiesAndObjects do
  2. use Ecto.Migration
  3. def change do
  4. # This was wrong, make it a noop.
  5. # create index(:objects, ["(data->>\"id\")"], name: :objects_unique_apid_index)
  6. # create index(:activities, ["(data->>\"id\")"], name: :activities_unique_apid_index)
  7. end
  8. end