Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/06/2011, 11:54
charlyta
 
Fecha de Ingreso: junio-2008
Mensajes: 291
Antigüedad: 15 años, 10 meses
Puntos: 9
Respuesta: dudas para menu cms

Esta es la estructura de mi sql, para más info:

Código SQL:
Ver original
  1. `content` (
  2.   `id` INT(11) NOT NULL AUTO_INCREMENT,
  3.   `title` VARCHAR(255) NOT NULL DEFAULT '',
  4.   `menutitle` text,
  5.   `startpage` tinyint(1) NOT NULL,
  6.   `last_updated` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  7.   `posting_time` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00',
  8.   `text` text NOT NULL,
  9.   `description` text,
  10.   `keywords` text NOT NULL,
  11.   `position` tinyint(4) NOT NULL DEFAULT '0',
  12.   `status` tinyint(4) DEFAULT NULL,
  13.   PRIMARY KEY (`id`)
  14. ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 PACK_KEYS=0 AUTO_INCREMENT=4 ;