Skip to content

Commit 71dcdad

Browse files
committed
Eloquent: don't prefix table name - defer this to the schema
1 parent cdb910f commit 71dcdad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Adapter/EloquentAdapter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ private function getAttributeProperty(Attribute $attribute): string
232232

233233
private function getAttributeColumn(Attribute $attribute): string
234234
{
235-
return $this->model->getTable().'.'.$this->getAttributeProperty($attribute);
235+
return $this->getAttributeProperty($attribute);
236236
}
237237

238238
private function getRelationshipProperty(Relationship $relationship): string

0 commit comments

Comments
 (0)