final move of files
[web.mtrack] / MTrackWeb / DataObjects / Tickets.php
1 <?php
2 /**
3  * Table Definition for tickets
4  */
5 require_once 'DB/DataObject.php';
6
7 class MTrackWeb_DataObjects_Tickets extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'tickets';                         // table name
13     public $tid;                             // string(32)  not_null primary_key
14     public $nsident;                         // string(128)  not_null
15     public $summary;                         // string(128)  not_null
16     public $description;                     // string(128)  
17     public $changelog;                       // string(128)  
18     public $created;                         // int(11)  not_null
19     public $updated;                         // int(11)  not_null
20     public $owner;                           // string(128)  
21     public $priority;                        // string(128)  
22     public $severity;                        // string(128)  
23     public $classification;                  // string(128)  
24     public $resolution;                      // string(128)  
25     public $cc;                              // string(128)  
26     public $status;                          // string(128)  not_null
27     public $estimated;                       // real(22)  
28     public $spent;                           // real(22)  
29
30     /* Static get */
31     function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('MTrackWeb_DataObjects_Tickets',$k,$v); }
32
33     /* the code above is auto generated do not remove the tag below */
34     ###END_AUTOCODE
35 }