DataObjects/Core_company.php
[Pman.Core] / DataObjects / Translations.php
1 <?php
2 /**
3  * Table Definition for translations
4  */
5 class_exists('DB_DataObject') ? '' : require_once 'DB/DataObject.php';
6
7 class Pman_Core_DataObjects_Translations extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'translations';                    // table name
13     public $id;                              // int(11)  not_null primary_key auto_increment
14     public $module;                          // string(64)  not_null multiple_key
15     public $tfile;                           // string(128)  not_null
16     public $tlang;                           // string(8)  not_null
17     public $tkey;                            // string(32)  not_null
18     public $tval;                            // blob(4294967295)  not_null blob
19
20     
21     /* the code above is auto generated do not remove the tag below */
22     ###END_AUTOCODE
23 }