mirror of https://github.com/movim/movim
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.
23 lines
448 B
23 lines
448 B
<?php
|
|
|
|
namespace App;
|
|
|
|
use Movim\Model;
|
|
|
|
class Subscription extends Model
|
|
{
|
|
public $incrementing = false;
|
|
protected $primaryKey = ['jid', 'server', 'node'];
|
|
protected $guarded = [];
|
|
|
|
public function info()
|
|
{
|
|
return $this->hasOne('App\Info', 'server', 'server')
|
|
->where('node', $this->node);
|
|
}
|
|
|
|
public function contact()
|
|
{
|
|
return $this->hasOne('App\Contact', 'id', 'jid');
|
|
}
|
|
}
|