Remove unneeded index

This commit is contained in:
Kieran Eglin 2025-02-11 14:43:46 -08:00
parent 9dca081fbc
commit e65d270260
No known key found for this signature in database
GPG key ID: 193984967FCF432D
2 changed files with 0 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 508 KiB

After

Width:  |  Height:  |  Size: 497 KiB

View file

@ -5,8 +5,5 @@ defmodule Pinchflat.Repo.Migrations.AddLastErrorToMediaItem do
alter table(:media_items) do
add :last_error, :string
end
execute "CREATE INDEX media_items_last_error_index ON media_items (last_error);",
"DROP INDEX media_items_last_error_index;"
end
end