Commit ab79382b authored by Michał Tatarynowicz's avatar Michał Tatarynowicz

Fix for #321 Problem after Laravel upgrade 4.2.8 to 4.2.9

parent d9f2c51c
......@@ -68,6 +68,17 @@ abstract class Model extends \Jenssegers\Eloquent\Model {
return $value;
}
/**
* Get the table qualified key name.
*
* @return string
*/
public function getQualifiedKeyName()
{
return $this->getKeyName();
}
/**
* Define an embedded one-to-many relationship.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment