You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use of self.class.table_name in awesome_nested_set.rb lines:
292, 313, 325, 364, 365, 370, 420 (only tested with line 292, but I assume it's the same in all instances)
Throws MySQL syntax error 1064 when SQL reserved words are used as table names.
I believe it should be replaced with quoted_table_name to add backticks to SQL table names.
The text was updated successfully, but these errors were encountered:
* Add support for Rails 7
* Add Rails 7 to github action CI flow
* Update dependency to rake ~> 12
* Fix specs and rework database loading (#1)
The older version of combustion used by awesome_nested_set doesn't
appear to be compatible with rails 7, and the latest version of
combustion no longer has an API that lets you pass in a config.
So this commit drops the dependency on combustion and just uses the
rails task for database setup and teardown.
Co-authored-by: Andrew Hampton <andrewwh@gmail.com>
Use of self.class.table_name in awesome_nested_set.rb lines:
292, 313, 325, 364, 365, 370, 420 (only tested with line 292, but I assume it's the same in all instances)
Throws MySQL syntax error 1064 when SQL reserved words are used as table names.
I believe it should be replaced with quoted_table_name to add backticks to SQL table names.
The text was updated successfully, but these errors were encountered: