Ver Mensaje Individual
  #7 (permalink)  
Antiguo 27/04/2016, 15:14
RicardGTX
 
Fecha de Ingreso: diciembre-2015
Mensajes: 64
Antigüedad: 8 años, 4 meses
Puntos: 0
Respuesta: 6 siguiente ids

Código SQL:
Ver original
  1. CREATE TABLE `trabajos` (
  2.  `id` INT(10) NOT NULL AUTO_INCREMENT,
  3.  `titulo_corto` VARCHAR(80) COLLATE utf8_unicode_ci NOT NULL,
  4.  `descripcion` text COLLATE utf8_unicode_ci NOT NULL,
  5.  `publicar` INT(1) NOT NULL,
  6.  `fecha` datetime NOT NULL,
  7.  PRIMARY KEY (`id`)
  8. ) ENGINE=MyISAM AUTO_INCREMENT=40 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci