20 lines
451 B
PHP
20 lines
451 B
PHP
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
|
|
/**
|
|
*
|
|
* @package PTA
|
|
* @subpackage Drive Paths
|
|
* @category Models
|
|
* @author Deon George
|
|
* @copyright (c) 2010 phpTSMadmin Development Team
|
|
* @license http://phptsmadmin.sf.net/license.html
|
|
*/
|
|
class Model_PATH extends ORM_TSM {
|
|
protected $_table_name = 'PATHS';
|
|
protected $_primary_key = 'DEVICE';
|
|
protected $_sorting = array(
|
|
'DESTINATION_NAME'=>'ASC',
|
|
);
|
|
}
|
|
?>
|