1234567891011121314151617181920212223242526272829 |
- <?php
- namespace App\Models\IM;
- use Illuminate\Database\Eloquent\Model;
- class UserMessage extends Model
- {
- protected $connection = 'mysql_fenpeiduixiang';
- protected $table = "user_messages";
- public $timestamps = false;
- protected $fillable = [
- 'uid',
- 'from_uid',
- 'to_uid',
- 'seq',
- 'msg_random',
- 'msg_time_stamp',
- 'content',
- ];
- protected $casts = [
- 'content' => 'array',
- ];
- }
|