Misc indexing improvements (#99)

* increased file follower timeout to 10 minutes

* Removed unique index across a source's collection and its media profile

* Ensure source gets updating during slow indexing
This commit is contained in:
Kieran
2024-03-20 18:34:33 -07:00
committed by GitHub
parent 3c522d8d6b
commit 9310b5e26e
5 changed files with 16 additions and 45 deletions
@@ -0,0 +1,7 @@
defmodule Pinchflat.Repo.Migrations.RemoveUniqueIndexFromSources do
use Ecto.Migration
def change do
drop unique_index(:sources, [:collection_id, :media_profile_id])
end
end