
14/06/2004, 21:38
|
 | | | Fecha de Ingreso: enero-2003 Ubicación: venus >> ((_\
Mensajes: 254
Antigüedad: 22 años, 1 mes 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)
); |