Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix!: activerecord find_by_sql spans on Rails 7.0+ #1184

Prev Previous commit
Next Next commit
tests: fix create_table call
  • Loading branch information
mrsimo committed Oct 1, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit fbce9bc0ddab923bda120469a7c6f3bb649c549b
2 changes: 1 addition & 1 deletion instrumentation/active_record/test/test_helper.rb
Original file line number Diff line number Diff line change
@@ -60,7 +60,7 @@ class SuperUser < ActiveRecord::Base; end
# Simple migration to create a table to test against
class CreateUserTable < ActiveRecord::Migration[migration_version]
def change
create_table :accounts do
create_table :accounts do |t|
t.timestamps
end