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:
parent
a22f5ff547
commit
0e0a3291f3
1 changed files with 3 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue