<?php
/**
 * Table Definition for responses
 */
require_once 'DB/DataObject.php';

class DesignSurvey_Responses extends DB_DataObject 
{
    ###START_AUTOCODE
    /* the code below is auto generated do not remove the above tag */

    var $__table = 'responses';                       // table name
    var $id;                              // int(11)  not_null primary_key auto_increment
    var $voter_id;                        // int(11)  not_null multiple_key
    var $question_id;                     // int(11)  not_null
    var $response;                        // blob(16777215)  blob

    /* ZE2 compatibility trick*/
    function __clone() { return $this;}

    /* Static get */
    function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('DataObjects_Responses',$k,$v); }

    /* the code above is auto generated do not remove the tag below */
    ###END_AUTOCODE
}