Feuerwehr-eppingen/app/Models/TagMigration.php

16 lines
242 B
PHP

<?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',
];
}