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
The current head brokes HAS_MANY relationships. Maybe others too, but I did not tries them). It uses key from the other table on the primary one.
When I downgraded it started to work.
The text was updated successfully, but these errors were encountered:
Can you provide some code that helps reproducing the problem?
Sorry, something went wrong.
Hi, I found and fix this proplem.
@mbukin what was the problem?
Change at line 121-124: if(is_array($dependentTableSchema->primaryKey)) // composite PK $pk=$dependentTableSchema->primaryKey[$index]; else $pk=$dependentTableSchema->primaryKey;
To: if(is_array($ownerTableSchema->primaryKey)) // composite PK $pk=$ownerTableSchema->primaryKey[$index]; else $pk=$ownerTableSchema->primaryKey;
I found this problem than use composite key in dependent table schema.
creocoder
No branches or pull requests
The current head brokes HAS_MANY relationships. Maybe others too, but I did not tries them).
It uses key from the other table on the primary one.
When I downgraded it started to work.
The text was updated successfully, but these errors were encountered: