Files
nexusphp/app/Models/TorrentCustomFieldValue.php

14 lines
238 B
PHP
Raw Normal View History

2022-09-06 20:45:29 +08:00
<?php
namespace App\Models;
class TorrentCustomFieldValue extends NexusModel
{
protected $table = 'torrents_custom_field_values';
protected $fillable = [
'torrent_id', 'custom_field_id', 'custom_field_value',
];
}