next commit

This commit is contained in:
2019-09-26 01:45:12 -05:00
parent e94b153718
commit 89a691af52
22 changed files with 1505 additions and 37 deletions

View File

@@ -1,10 +1,32 @@
<?php
namespace App;
namespace App\Models\Esi;
use Illuminate\Database\Eloquent\Model;
class EsiToken extends Model
{
//
}
// Table Name
protected $table = 'esi_tokens';
//Primary Key
public $primaryKey = 'id';
// Timestamps
public $timestamps = true;
/**
* The attributes that are mass assignable
*
* @var array
*/
protected $fillable = [
'character_id',
'access_token',
'refresh_token',
'expires_in',
];
public function esiscopes() {
return $this->hasMany('App\Models\EsiScope', 'character_id', 'character_id');
}
}