2021-02-26 16:02:07 +00:00
|
|
|
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use App\Models\Dataset;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class DatasetIdentifier extends Model
|
|
|
|
{
|
2021-03-01 15:04:02 +00:00
|
|
|
protected $table = 'dataset_identifiers';
|
2021-02-26 16:02:07 +00:00
|
|
|
protected $guarded = array();
|
2021-05-19 13:10:46 +00:00
|
|
|
public $timestamps = true;
|
|
|
|
|
2021-05-27 15:44:01 +00:00
|
|
|
// 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
|
2021-05-19 13:10:46 +00:00
|
|
|
protected $touches = ['dataset'];
|
2021-02-26 16:02:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The dataset that belong to the DocumentIdentifier.
|
|
|
|
*/
|
|
|
|
public function dataset()
|
|
|
|
{
|
2021-05-18 11:17:29 +00:00
|
|
|
return $this->belongsTo(Dataset::class, 'dataset_id', 'id');
|
2021-02-26 16:02:07 +00:00
|
|
|
}
|
|
|
|
}
|