final move of files
[web.mtrack] / MTrackWeb / DataObjects / Milestones.php
1 <?php
2 /**
3  * Table Definition for milestones
4  */
5 require_once 'DB/DataObject.php';
6
7 class MTrackWeb_DataObjects_Milestones extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'milestones';                      // table name
13     public $mid;                             // int(11)  not_null primary_key auto_increment
14     public $name;                            // string(128)  
15     public $description;                     // string(128)  
16     public $startdate;                       // datetime(19)  binary
17     public $duedate;                         // datetime(19)  binary
18     public $completed;                       // datetime(19)  binary
19     public $deleted;                         // int(11)  not_null
20     public $created;                         // int(11)  not_null
21     public $updated;                         // int(11)  not_null
22     public $pmid;                            // int(11)  
23
24     /* Static get */
25     function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('MTrackWeb_DataObjects_Milestones',$k,$v); }
26
27     /* the code above is auto generated do not remove the tag below */
28     ###END_AUTOCODE
29 }