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

16 lines
314 B
PHP

<?php
namespace App\Models;
use Nexus\Database\NexusDB;
class TorrentCustomField extends NexusModel
{
protected $table = 'torrents_custom_fields';
public $timestamps = true;
protected $fillable = ['name', 'label', 'type', 'required', 'is_single_row', 'options', 'help', 'display', 'priority'];
}