Some updates.

This commit is contained in:
James Cole
2015-02-06 05:35:00 +01:00
parent 804a97cad7
commit bc16298b6e
21 changed files with 54 additions and 53 deletions

View File

@@ -7,12 +7,12 @@ class Bill extends Model
public function transactionjournals()
{
return $this->hasMany('TransactionJournal');
return $this->hasMany('FireflyIII\Models\TransactionJournal');
}
public function user()
{
return $this->belongsTo('User');
return $this->belongsTo('FireflyIII\User');
}