Files
nexusphp/app/Models/TorrentCustomFieldValue.php
2022-09-06 20:45:29 +08:00

14 lines
238 B
PHP

<?php
namespace App\Models;
class TorrentCustomFieldValue extends NexusModel
{
protected $table = 'torrents_custom_field_values';
protected $fillable = [
'torrent_id', 'custom_field_id', 'custom_field_value',
];
}