datatable.directory codebase
https://datatable.directory/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.0 KiB
44 lines
1.0 KiB
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Riesjart\Relaquent\Model\Concerns\HasRelaquentRelationships;
|
|
|
|
/**
|
|
* Table revision (a set of rows)
|
|
*/
|
|
class Revision extends Model
|
|
{
|
|
use HasRelaquentRelationships;
|
|
|
|
/** Included rows */
|
|
public function rows()
|
|
{
|
|
return $this->belongsToMany(Row::class, 'revision_row_pivot');
|
|
}
|
|
|
|
/** Proposal that lead to this revision */
|
|
public function appliedProposal()
|
|
{
|
|
return $this->hasOneThrough(Proposal::class, 'revision_proposal_pivot');
|
|
}
|
|
|
|
/** Proposals that depend on this revision */
|
|
public function dependentProposals()
|
|
{
|
|
return $this->hasMany(Proposal::class);
|
|
}
|
|
|
|
/** Revision this orignates from */
|
|
public function parentRevision()
|
|
{
|
|
return $this->belongsTo(Revision::class, 'ancestor_id');
|
|
}
|
|
|
|
/** Tables referencing this revision */
|
|
public function tables()
|
|
{
|
|
return $this->belongsToMany(Table::class, 'table_revision_pivot');
|
|
}
|
|
}
|
|
|