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