PHP8
[Pman.MTrack] / DataObjects / Mtrack_snippet.php
1 <?php
2 /**
3  * Table Definition for mtrack_snippet
4  */
5 class_exists('DB_DataObject') ? '' : require_once 'DB/DataObject.php';
6
7 class Pman_MTrack_DataObjects_Mtrack_snippet extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'mtrack_snippet';                  // table name
13     public $id;                              // int(11)  not_null primary_key auto_increment
14     public $created;                         // int(11)  not_null
15     public $updated;                         // int(11)  not_null
16     public $description;                     // blob(65535)  blob
17     public $lang;                            // string(32)  not_null
18     public $snippet;                         // blob(-1)  blob
19
20     
21     /* the code above is auto generated do not remove the tag below */
22     ###END_AUTOCODE
23 }