Fix #7123 - getting abra ready to test
[Pman.Xtuple] / DataObjects / Dept.php
1 <?php
2 /**
3  * Table Definition for dept
4  */
5 require_once 'DB/DataObject.php';
6
7 class Pman_Xtuple_DataObjects_Dept extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'dept';                // table name
13     public $dept_id;                         // int4(4)  not_null default_nextval%28dept_dept_id_seq%29 primary_key
14     public $dept_number;                     // text(-1)  not_null unique_key
15     public $dept_name;                       // text(-1)  not_null
16
17     
18     /* the code above is auto generated do not remove the tag below */
19     ###END_AUTOCODE
20 }