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
+4 -1
View File
@@ -9,6 +9,9 @@ class EsiScope extends Model
// Table Name
protected $table = 'EsiScopes';
//Primary Key
public $primaryKey = 'id';
// Timestamps
public $timestamps = true;
@@ -23,6 +26,6 @@ class EsiScope extends Model
];
public function user() {
return $this->belongsTo('App\Models\User\User', 'character_id', 'character_id');
return $this->belongsTo(App\Models\User\User::class, 'character_id', 'character_id');
}
}