final move of files
[web.mtrack] / MTrackWeb / DataObjects / Repos.php
1 <?php
2 /**
3  * Table Definition for repos
4  */
5 require_once 'DB/DataObject.php';
6
7 class MTrackWeb_DataObjects_Repos extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'repos';                           // table name
13     public $repoid;                          // int(11)  not_null primary_key auto_increment
14     public $shortname;                       // string(16)  not_null
15     public $scmtype;                         // string(32)  not_null
16     public $repopath;                        // string(128)  not_null
17     public $browserurl;                      // string(128)  
18     public $browsertype;                     // string(128)  
19     public $description;                     // string(128)  
20     public $serverurl;                       // string(128)  
21     public $parent;                          // string(128)  not_null
22     public $clonedfrom;                      // int(11)  
23
24     /* Static get */
25     function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('MTrackWeb_DataObjects_Repos',$k,$v); }
26
27     /* the code above is auto generated do not remove the tag below */
28     ###END_AUTOCODE
29 }