
07/11/2009, 16:19
|
 | | | Fecha de Ingreso: noviembre-2009 Ubicación: Vigo, España
Mensajes: 133
Antigüedad: 15 años, 4 meses Puntos: 1 | |
Respuesta: Problema con sistema de mensajes privados Son estas:
CREATE TABLE mensajes (
msgid int(9) NOT NULL auto_increment,
de char(255) NOT NULL,
para char(255) NOT NULL,
asunto char(255) NOT NULL,
mensaje longtext NOT NULL,
fecha char(255) NOT NULL,
leido int(10) NOT NULL default '0',
PRIMARY KEY (msgid)
) |