Por favor, ten en cuenta 📝 que si deseas hacer un trato 🤝 con este usuario, está baneado 🔒.
Hola compañeros venia a pedirles un favorsote como agrego estos campos a mi actual tabla
PHP:
-- Estructura de tabla para la tabla `mitabla`
--
CREATE TABLE IF NOT EXISTS `mitabla` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`date` int(11) DEFAULT NULL,
`employer` varchar(100) DEFAULT NULL,
`job_category` varchar(11) DEFAULT NULL,
`region` varchar(50) DEFAULT NULL,
`title` text,
`message` text,
`active` varchar(5) DEFAULT 'YES',
`notification` varchar(5) DEFAULT 'NO',
`contact_person` varchar(255) DEFAULT 'none',
`places` text,
`featured` tinyint(4) NOT NULL DEFAULT '0',
`expires` int(11) NOT NULL DEFAULT '0',
`zip` varchar(20) NOT NULL DEFAULT '',
`job_type` tinyint(4) NOT NULL DEFAULT '2',
`featured_expires` int(11) NOT NULL DEFAULT '0',
`salary` varchar(150) NOT NULL DEFAULT '0',
`date_available` varchar(50) NOT NULL DEFAULT '',
`more_fields` text NOT NULL,
PRIMARY KEY (`id`),
KEY `employer` (`employer`),
KEY `featured` (`featured`),
KEY `expires` (`expires`),
KEY `featured_expires` (`featured_expires`),
KEY `job_category` (`job_category`),
KEY `active` (`active`),
KEY `date` (`date`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=14 ;