Files
nexusphp/app/Models/TorrentCustomFieldValue.php

18 lines
299 B
PHP
Raw Normal View History

2022-09-06 20:45:29 +08:00
<?php
namespace App\Models;
2022-09-19 16:27:04 +08:00
use Nexus\Database\NexusDB;
2022-09-06 20:45:29 +08:00
class TorrentCustomFieldValue extends NexusModel
{
protected $table = 'torrents_custom_field_values';
protected $fillable = [
'torrent_id', 'custom_field_id', 'custom_field_value',
];
2022-09-19 16:27:04 +08:00
2022-10-27 20:21:54 +08:00
public $timestamps = true;
2022-09-19 16:27:04 +08:00
2022-09-06 20:45:29 +08:00
}