fix linting (#898)

This commit is contained in:
Echo 2026-02-02 20:38:52 -05:00 committed by GitHub
parent 7e54f109ba
commit d593789774
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -10,6 +10,6 @@ class CreatePgheroQueryStats < ActiveRecord::Migration[8.1]
t.timestamp :captured_at
end
add_index :pghero_query_stats, [:database, :captured_at]
add_index :pghero_query_stats, [ :database, :captured_at ]
end
end
end

View file

@ -8,6 +8,6 @@ class CreatePgheroSpaceStats < ActiveRecord::Migration[8.1]
t.timestamp :captured_at
end
add_index :pghero_space_stats, [:database, :captured_at]
add_index :pghero_space_stats, [ :database, :captured_at ]
end
end
end