Files
nexusphp/app/Models/TorrentCustomFieldValue.php
2022-10-27 20:21:54 +08:00

18 lines
299 B
PHP

<?php
namespace App\Models;
use Nexus\Database\NexusDB;
class TorrentCustomFieldValue extends NexusModel
{
protected $table = 'torrents_custom_field_values';
protected $fillable = [
'torrent_id', 'custom_field_id', 'custom_field_value',
];
public $timestamps = true;
}