turtle-wow-source-kinda/Dumps/Source Code/8 - Development_website/develop/app/Models/pivot/PivotBugTrackerAssignedTo.php
Brian Oost a1d5bb70b2 Init
2024-08-06 18:06:40 +02:00

21 lines
389 B
PHP

<?php
namespace App\Models\pivot;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Relations\Pivot;
class PivotBugTrackerAssignedTo extends Pivot
{
use HasFactory;
protected $table = 'pivot_bug_tracker_assigned_to';
public $timestamps = false;
protected $fillable = [
'bug_tracker_id',
'assigned_to_id'
];
}