'Microinformes.', 'fields' => array( 'id_microinforme' => array( 'description' => 'The id identifier to microinforme.', 'type' => 'serial', 'not null' => TRUE, ), 'anho' => array( 'description' => 'anho para el microinforme.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'id_area_estrategica' => array( 'description' => 'identificador a area estrategica.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'informacion_textual' => array( 'type' => 'text', 'size' => 'big', 'not null' => TRUE, 'default' => '' ), 'datos_graficas_y_tablas' => array( 'type' => 'text', 'size' => 'big', 'not null' => TRUE, 'default' => '' ), 'fecha_creacion' => array( 'description' => 'Fecha de creación.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'fecha_ultima_actualizacion' => array( 'description' => 'Fecha última actualización.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), 'uid' => array( 'description' => 'Referencia al autor.', 'type' => 'int', 'unsigned' => TRUE, 'not null' => TRUE, 'default' => 0, ), ), 'indexes' => array( 'id_microinforme' => array('id_microinforme'), ), 'primary key' => array('id_microinforme'), ); return $schema; }