Fix #7123 - getting abra ready to test
[Pman.Xtuple] / DataObjects / Status.php
1 <?php
2 /**
3  * Table Definition for status
4  */
5 require_once 'DB/DataObject.php';
6
7 class Pman_Xtuple_DataObjects_Status extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'status';              // table name
13     public $status_id;                       // int4(4)  not_null default_nextval%28status_status_id_seq%29
14     public $status_type;                     // text(-1)  not_null unique_key multiple_key
15     public $status_code;                     // bpchar(-1)  not_null unique_key multiple_key
16     public $status_name;                     // text(-1)  
17     public $status_seq;                      // int4(4)  
18     public $status_color;                    // text(-1)  default_white
19
20     
21     /* the code above is auto generated do not remove the tag below */
22     ###END_AUTOCODE
23 }