Rubocop format

This commit is contained in:
Max Wofford
2025-05-15 09:36:38 -04:00
parent c289d710f0
commit 30e6c06dd8
11 changed files with 71 additions and 72 deletions

View File

@@ -19,6 +19,6 @@ class CreateRepoHostEvents < ActiveRecord::Migration[8.0]
# Add an index for efficiently finding the latest event for a user/provider,
# and for the "stop fetching if event exists" logic.
# The primary key `id` is already unique and indexed.
add_index :repo_host_events, [:user_id, :provider, :created_at], name: 'index_repo_host_events_on_user_provider_created_at'
add_index :repo_host_events, [ :user_id, :provider, :created_at ], name: 'index_repo_host_events_on_user_provider_created_at'
end
end