Re-synced controllers, configs, libraries, seeds, and docs with the latest API expectations and response helpers.
18 lines
448 B
PHP
Executable File
18 lines
448 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models\Organization;
|
|
|
|
use App\Models\BaseModel;
|
|
|
|
class HostAppModel extends BaseModel {
|
|
protected $table = 'hostapp';
|
|
protected $primaryKey = 'HostAppID';
|
|
protected $allowedFields = ['HostAppName', 'SiteID', 'CreateDate', 'EndDate'];
|
|
|
|
protected $useTimestamps = true;
|
|
protected $createdField = 'CreateDate';
|
|
protected $updatedField = '';
|
|
protected $useSoftDeletes = true;
|
|
protected $deletedField = 'EndDate';
|
|
}
|