1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-25 03:43:33 +01:00
freescout/app/ConversationFolder.php

18 lines
300 B
PHP
Raw Normal View History

2018-08-10 16:28:35 +02:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class ConversationFolder extends Model
{
2018-11-12 10:12:57 +01:00
/**
2018-09-14 10:24:04 +02:00
* The table associated with the model.
*
* @var string
*/
protected $table = 'conversation_folder';
protected $fillable = ['folder_id', 'conversation_id'];
2018-11-12 10:12:57 +01:00
}