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.
42 lines
810 B
42 lines
810 B
6 years ago
|
<?php
|
||
|
|
||
|
namespace App\Models;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
|
||
|
/**
|
||
|
* Change proposal
|
||
|
*/
|
||
|
class Proposal extends Model
|
||
|
{
|
||
|
/** Added rows */
|
||
|
public function addedRows()
|
||
|
{
|
||
|
return $this->belongsToMany(Row::class, 'proposal_add_row_pivot');
|
||
|
}
|
||
|
|
||
|
/** Removed rows */
|
||
|
public function removedRows()
|
||
|
{
|
||
|
return $this->belongsToMany(Row::class, 'proposal_remove_row_pivot');
|
||
|
}
|
||
|
|
||
|
/** Authoring user */
|
||
|
public function author()
|
||
|
{
|
||
|
return $this->belongsTo(User::class, 'author_id');
|
||
|
}
|
||
|
|
||
|
/** Target revision */
|
||
|
public function revision()
|
||
|
{
|
||
|
return $this->belongsTo(Revision::class);
|
||
|
}
|
||
|
|
||
|
/** Target table (that this was submitted to) */
|
||
|
public function table()
|
||
|
{
|
||
|
return $this->belongsTo(Table::class);
|
||
|
}
|
||
|
}
|