0582a7bfd5
* 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
8 lines
185 B
Elixir
8 lines
185 B
Elixir
defmodule Pinchflat.Repo.Migrations.RemoveUniqueIndexFromSources do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
drop unique_index(:sources, [:collection_id, :media_profile_id])
|
|
end
|
|
end
|