mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
12 lines
184 B
PHP
12 lines
184 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
class PersonalAccessTokenPlain extends NexusModel
|
|
{
|
|
protected $fillable = ['access_token_id', 'plain_text_token'];
|
|
|
|
public $timestamps = true;
|
|
}
|