2021-02-26 17:02:07 +01:00
|
|
|
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use App\Models\Dataset;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class DatasetIdentifier extends Model
|
|
|
|
{
|
2021-03-01 16:04:02 +01:00
|
|
|
protected $table = 'dataset_identifiers';
|
2021-02-26 17:02:07 +01:00
|
|
|
protected $guarded = array();
|
2021-05-19 15:10:46 +02:00
|
|
|
public $timestamps = true;
|
|
|
|
|
|
|
|
//See the array called $touches? This is where you put all the relationships you want to get updated_at as soon as this Model is updated
|
|
|
|
protected $touches = ['dataset'];
|
2021-02-26 17:02:07 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The dataset that belong to the DocumentIdentifier.
|
|
|
|
*/
|
|
|
|
public function dataset()
|
|
|
|
{
|
2021-05-18 13:17:29 +02:00
|
|
|
return $this->belongsTo(Dataset::class, 'dataset_id', 'id');
|
2021-02-26 17:02:07 +01:00
|
|
|
}
|
|
|
|
}
|