Eloquent: don't prefix table name - defer this to the schema
This commit is contained in:
parent
cdb910fdda
commit
71dcdadb3b
|
|
@ -232,7 +232,7 @@ class EloquentAdapter implements AdapterInterface
|
|||
|
||||
private function getAttributeColumn(Attribute $attribute): string
|
||||
{
|
||||
return $this->model->getTable().'.'.$this->getAttributeProperty($attribute);
|
||||
return $this->getAttributeProperty($attribute);
|
||||
}
|
||||
|
||||
private function getRelationshipProperty(Relationship $relationship): string
|
||||
|
|
|
|||
Loading…
Reference in New Issue