mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-12 11:20:52 +08:00
16 lines
314 B
PHP
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'];
|
|
|
|
}
|