turtle-wow-source-kinda/Dumps/Source Code/8 - Development_website/develop/app/Models/pivot/PivotBugTrackerAssignedTo.php

21 lines
389 B
PHP
Raw Normal View History

2024-08-06 16:06:40 +00:00
<?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'
];
}