relationships
This commit is contained in:
17
app/Models/EsiToken.php
Normal file
17
app/Models/EsiToken.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class EsiToken extends Model
|
||||
{
|
||||
// Table Name
|
||||
protected $table = 'EsiTokens';
|
||||
|
||||
//Primary Key
|
||||
public $primaryKey = 'id';
|
||||
|
||||
// Timestamps
|
||||
public $timestamps = true;
|
||||
}
|
||||
Reference in New Issue
Block a user