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.

17 lines
277 B

  1. <?php
  2. namespace App;
  3. use Movim\Model;
  4. class OpenChat extends Model
  5. {
  6. public $incrementing = false;
  7. protected $primaryKey = ['user_id', 'jid'];
  8. protected $fillable = ['jid'];
  9. public function user()
  10. {
  11. return $this->belongsTo(User::class);
  12. }
  13. }