16 lines
244 B
PHP
16 lines
244 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use OwenIt\Auditing\Contracts\Auditable;
|
|
|
|
class PostMigration extends Model
|
|
{
|
|
protected $fillable = [
|
|
'type',
|
|
'old_id',
|
|
'post_id',
|
|
];
|
|
}
|