tethys/app/Models/DatasetIdentifier.php

25 lines
621 B
PHP
Raw Normal View History

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
{
protected $table = 'dataset_identifiers';
2021-02-26 16:02:07 +00:00
protected $guarded = array();
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 16:02:07 +00:00
/**
* The dataset that belong to the DocumentIdentifier.
*/
public function dataset()
{
return $this->belongsTo(Dataset::class, 'dataset_id', 'id');
2021-02-26 16:02:07 +00:00
}
}