Files
nexusphp/app/Models/TorrentCustomFieldValue.php

16 lines
286 B
PHP
Raw Normal View History

2022-09-19 16:27:04 +08:00
<?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', ];
}