Commit 77c30f726402131efc00b7997af4ef76529ee827
1 parent
c1bf132b
test
Showing
1 changed file
with
5 additions
and
3 deletions
Show diff stats
app/library/App/Model/Project.php
... | ... | @@ -31,9 +31,11 @@ class Project extends \App\Mvc\DateTrackingModel { |
31 | 31 | |
32 | 32 | public function initialize() { |
33 | 33 | |
34 | - $this->belongsTo('user_id', User::class, 'id', [ | |
35 | - 'alias' => 'User', | |
36 | - ]); | |
34 | + $this->setSchema("public"); | |
35 | + | |
36 | +// $this->belongsTo('user_id', User::class, 'id', [ | |
37 | +// 'alias' => 'User', | |
38 | +// ]); | |
37 | 39 | } |
38 | 40 | |
39 | 41 | } |
40 | 42 | \ No newline at end of file | ... | ... |