Ver Mensaje Individual
  #6 (permalink)  
Antiguo 14/06/2004, 21:38
Avatar de macabro
macabro
 
Fecha de Ingreso: enero-2003
Ubicación: venus >> ((_\
Mensajes: 254
Antigüedad: 21 años, 3 meses
Puntos: 1
CREATE TABLE enlaces (
id int(8) NOT NULL auto_increment,
titulo varchar(80) NOT NULL,
url varchar(80) NOT NULL,
email varchar(255) NOT NULL,
categoria text NOT NULL,
descripcion text NOT NULL,
activo int(3) DEFAULT '0' NOT NULL,
clicks int(9) DEFAULT '0' NOT NULL,
PRIMARY KEY (id)
);


CREATE TABLE categorias (
id int(8) NOT NULL auto_increment,
cat_titulo varchar(80) NOT NULL,
PRIMARY KEY (id)
);