/*
MySQL Data Transfer
Source Host: localhost
Source Database: denn
Target Host: localhost
Target Database: denn
Date: 21/02/2015 06:27:36 p. m.
*/

SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for incidente
-- ----------------------------
DROP TABLE IF EXISTS `incidente`;
CREATE TABLE `incidente` (
  `codigo` int(11) NOT NULL AUTO_INCREMENT,
  `descripcion` varchar(32) DEFAULT NULL,
  `tipo` varchar(16) DEFAULT NULL,
  PRIMARY KEY (`codigo`)
) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records 
-- ----------------------------
INSERT INTO `incidente` VALUES ('1', 'ROBO', 'ROBO');
INSERT INTO `incidente` VALUES ('2', 'HOMICIDIO', 'HOMICIDIO');
INSERT INTO `incidente` VALUES ('3', 'FALSIFICACION', 'FALSIFICACION');
INSERT INTO `incidente` VALUES ('4', 'DELITO CIBERNETICO', 'ROBO');
INSERT INTO `incidente` VALUES ('5', 'HERIDO', 'HERIDO');
INSERT INTO `incidente` VALUES ('7', 'SUICIDIO', 'SUICIDIO');
INSERT INTO `incidente` VALUES ('8', null, null);
INSERT INTO `incidente` VALUES ('9', 'DELITO SEXUAL', 'DELITO SEXUAL');
INSERT INTO `incidente` VALUES ('12', 'ROBOS DE GANADO', null);
INSERT INTO `incidente` VALUES ('13', 'DETENIDO', 'DETENIDO');
INSERT INTO `incidente` VALUES ('14', 'SOMETIDO', 'SOMETIDO');
INSERT INTO `incidente` VALUES ('15', null, null);
