Files
nexusphp/app/Models/TorrentCustomFieldValue.php
T

25 lines
452 B
PHP
Raw Normal View History

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