Files
nexusphp/app/Models/TorrentCustomFieldValue.php
2022-09-19 16:27:04 +08:00

16 lines
286 B
PHP

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