added primary keys to all models

This commit is contained in:
2021-03-10 23:29:30 +09:00
parent 91bde37441
commit 4db6dac439
35 changed files with 197 additions and 19 deletions

View File

@@ -27,6 +27,6 @@ class Service extends Model
];
public function structure() {
return $this->hasOne('App\Models\Structure\Structure', 'structure_id', 'structure_id');
return $this->belongsTo(App\Models\Structure\Structure::class, 'structure_id', 'structure_id');
}
}