We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This is being fixed @ has_many_fix branch. This is the failing case that should be fixed bf9c4eb#diff-d90d1bc62234f746df962016d75e56c8R58
has_many_fix
The text was updated successfully, but these errors were encountered:
foreign_key and foreign_type modifiers are not counted.
foreign_key
foreign_type
Here's my case:
# content.rb class Content < ApplicationRecord belongs_to :material, polymorphic: true, foreign_key: :id_content, foreign_type: :type_content end
Index suggested to add:
add_index :contents, [:material_id, :material_type]
I don't know, if I should create separate issue for that
Sorry, something went wrong.
No branches or pull requests
This is being fixed @
has_many_fix
branch. This is the failing case that should be fixed bf9c4eb#diff-d90d1bc62234f746df962016d75e56c8R58The text was updated successfully, but these errors were encountered: