]> git.llucax.com Git - software/sercom-old.git/blob - src/T/DBO/Prueba.php
Se ordenan las entregas rechazadas.
[software/sercom-old.git] / src / T / DBO / Prueba.php
1 <?php // vim: set binary noeol et sts=4 sw=4 :
2
3 require_once 'DB.php';
4 require_once 'DB/DataObject.php';
5
6 class T_DBO_Prueba extends DB_DataObject
7 {
8     var $_database = 'taller';
9     var $__table = 'prueba';
10     var $id;
11     var $intento_id;
12     var $caso_de_prueba_id;
13     var $inicio;
14     var $fin;
15     var $pasada;
16     var $observaciones;
17
18     /* Static get */
19     function staticGet($k, $v = NULL)
20     {
21         return DB_DataObject::staticGet('T_DBO_Prueba', $k, $v);
22     }
23
24     // now define your table structure.
25     // key is column name, value is type
26     function table()
27     {
28         return array(
29             'id'                => DB_DATAOBJECT_INT,
30             'intento_id'        => DB_DATAOBJECT_INT,
31             'caso_de_prueba_id' => DB_DATAOBJECT_INT,
32             'inicio'            => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME,
33             'fin'               => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME,
34             'pasada'            => DB_DATAOBJECT_INT + DB_DATAOBJECT_BOOL,
35             'observaciones'     => DB_DATAOBJECT_STR + DB_DATAOBJECT_TXT,
36         );
37     }
38
39     // now define the keys.
40     function keys()
41     {
42         return array('id');
43     }
44
45 }
46
47 ?>