<?php
/**
* Table Definition for task_content
*/
require_once 'DB/DataObject.php';
class libdb_Task_content extends DB_DataObject
{
###START_AUTOCODE
/* the code below is auto generated do not remove the above tag */
var $__table = 'task_content'; // table name
var $id; // int(1) not_null primary_key unique_key multiple_key unsigned auto_increment
var $idtask; // int(1) not_null unsigned
var $text; // blob(65535) not_null blob
/* ZE2 compatibility trick*/
function __clone() { return $this;}
/* Static get */
function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('libdb_Task_content',$k,$v); }
/* the code above is auto generated do not remove the tag below */
###END_AUTOCODE
}