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