
10/10/2006, 08:12
|
| | Fecha de Ingreso: abril-2005
Mensajes: 100
Antigüedad: 20 años Puntos: 0 | |
wenass, la tabla para que funcione el script es suficiente con esta:
Código:
CREATE TABLE `usuarios` (
`id_usuario` bigint(20) unsigned NOT NULL auto_increment,
`nick` varchar(255) NOT NULL,
`pass` varchar(255) NOT NULL,
`uconexion_fecha` varchar(255) NOT NULL,
`uconexion_ip` varchar(255) NOT NULL,
`conexiones` int(10) unsigned NOT NULL default '0',
`intentos` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`id_usuario`),
UNIQUE KEY `nick` (`nick`),
)
un saludo. |