mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 09:39:10 +08:00
13 lines
210 B
PHP
13 lines
210 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Knowledge extends Model
|
|
{
|
|
protected $table = 'v2_knowledge';
|
|
protected $dateFormat = 'U';
|
|
protected $guarded = ['id'];
|
|
}
|