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

viaTable on multiple schemas #1

Open
kgronkowski opened this issue May 18, 2015 · 0 comments
Open

viaTable on multiple schemas #1

kgronkowski opened this issue May 18, 2015 · 0 comments

Comments

@kgronkowski
Copy link

When you have other schema than public and many - many relation in that schema, generated code doesn't add schema name to the name of the via table.

return \$this->hasMany($className0::className(), $link)->viaTable('{$table->name}', $viaLink);

there should be some variable containing empty string or $table->shemaName.'.' if schema name is not empty and is not public. For example:

$schema = '';
if(!empty($table->shemaName) && $table->shemaName != 'public'){
    $schema = $table->shemaName.'.';
}
return \$this->hasMany($className0::className(), $link)->viaTable('{$schema}{$table->name}', $viaLink);

Otherwise there are errors when you try to use that relation.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant