Código: [Seleccionar]
-- Table structure for `usuarios`
-- ----------------------------
DROP TABLE IF EXISTS `usuarios`;
CREATE TABLE `usuarios` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`usuario` varchar(13) NOT NULL,
`password` varchar(2 NOT NULL,
`email` varchar(40) NOT NULL DEFAULT '[email protected]',
`edad` int(2) unsigned NOT NULL DEFAULT '14',
`tiempo_registrado` int(3) unsigned NOT NULL,
`pais` varchar(30) NOT NULL DEFAULT 'Alemania',
`ciudad` varchar(30) NOT NULL DEFAULT 'BoomBang',
PRIMARY KEY (`id`),
KEY `usuario` (`usuario`),
KEY `email` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- ----------------------------
-- Records of usuarios
-- ----------------------------y que al ingresar muestre el nivel_ring
gracias