Fix #7123 - getting abra ready to test
[Pman.Xtuple] / DataObjects / Incdthist.php
1 <?php
2 /**
3  * Table Definition for incdthist
4  */
5 require_once 'DB/DataObject.php';
6
7 class Pman_Xtuple_DataObjects_Incdthist extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'incdthist';           // table name
13     public $incdthist_id;                    // int4(4)  not_null default_nextval%28incdthist_incdthist_id_seq%29 primary_key
14     public $incdthist_incdt_id;              // int4(4)  not_null
15     public $incdthist_change;                // bpchar(-1)  
16     public $incdthist_target_id;             // int4(4)  
17     public $incdthist_timestamp;             // timestamp(8)  not_null default_now%28%29
18     public $incdthist_username;              // text(-1)  not_null default_%22current_user%22%28%29
19     public $incdthist_descrip;               // text(-1)  
20
21     
22    /**
23     * Getter / Setter for $incdthist_incdt_id
24     *
25     * @param    mixed   (optional) value to assign
26     * @access   public
27     */
28     public function incdt() {
29         return func_num_args() ? $this->link('incdthist_incdt_id', func_get_arg(0)) : $this->link('incdthist_incdt_id');
30     }
31
32
33     /* the code above is auto generated do not remove the tag below */
34     ###END_AUTOCODE
35 }