mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2025-12-29 17:27:59 -05:00
24 lines
262 B
PHP
24 lines
262 B
PHP
<?php
|
|
App::uses('AppModel', 'Model');
|
|
/**
|
|
* Log Model
|
|
*
|
|
*/
|
|
class Log extends AppModel {
|
|
|
|
/**
|
|
* Use table
|
|
*
|
|
* @var mixed False or table name
|
|
*/
|
|
public $useTable = 'Logs';
|
|
|
|
/**
|
|
* Primary key field
|
|
*
|
|
* @var string
|
|
*/
|
|
public $primaryKey = 'TimeKey';
|
|
|
|
}
|