Format migration file to fix CI

The migration was missing proper formatting which caused CI to fail.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Graham McIntire 2025-10-25 16:46:25 -05:00
parent a22f5ff547
commit 0e0a3291f3
No known key found for this signature in database

View file

@ -17,6 +17,8 @@ defmodule Aprsme.Repo.Migrations.AddCallsignSearchIndexes do
)
# Add composite index for sender + received_at for efficient sorting
create_if_not_exists index(:packets, [:sender, :received_at], name: :packets_sender_received_at_idx)
create_if_not_exists index(:packets, [:sender, :received_at],
name: :packets_sender_received_at_idx
)
end
end