mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 22:20:57 +08:00
18 lines
299 B
PHP
18 lines
299 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Nexus\Database\NexusDB;
|
|
|
|
class TorrentCustomFieldValue extends NexusModel
|
|
{
|
|
protected $table = 'torrents_custom_field_values';
|
|
|
|
protected $fillable = [
|
|
'torrent_id', 'custom_field_id', 'custom_field_value',
|
|
];
|
|
|
|
public $timestamps = true;
|
|
|
|
}
|