Eloquent: don't prefix table name - defer this to the schema

This commit is contained in:
Toby Zerner 2021-05-05 14:19:36 +09:30
parent cdb910fdda
commit 71dcdadb3b
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,7 @@ class EloquentAdapter implements AdapterInterface
private function getAttributeColumn(Attribute $attribute): string private function getAttributeColumn(Attribute $attribute): string
{ {
return $this->model->getTable().'.'.$this->getAttributeProperty($attribute); return $this->getAttributeProperty($attribute);
} }
private function getRelationshipProperty(Relationship $relationship): string private function getRelationshipProperty(Relationship $relationship): string