mirror of
https://github.com/robonen/education-project.git
synced 2026-03-20 10:54:31 +00:00
16 lines
309 B
PHP
16 lines
309 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class TaskHistory extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'banktask_task';
|
|
protected $fillable = ['banktask_id', 'task_id'];
|
|
public $timestamps = false;
|
|
}
|