fix #8131 - chinese translations
[Pman.Core] / DataObjects / Core_person_alias.php
1 <?php
2 /**
3  * Table Definition for core_person_alias
4  */
5 class_exists('DB_DataObject') ? '' : require_once 'DB/DataObject.php';
6
7 class Pman_Core_DataObjects_Core_person_alias extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'core_person_alias';               // table name
13     public $id;                              // int(11)  not_null primary_key auto_increment
14     public $person_id;                       // string(128)  
15     public $alias;                           // string(254)  not_null
16
17     
18     /* the code above is auto generated do not remove the tag below */
19     ###END_AUTOCODE
20 }