· 8 years ago · Dec 11, 2017, 01:40 PM
1CREATE TABLE IF NOT EXISTS `mensajesdestino` (
2 `id` int(11) NOT NULL AUTO_INCREMENT,
3 `mensajes_id` int(11) NOT NULL,
4 `profesores_id` int(11) NOT NULL,
5 `leido` tinyint(1) DEFAULT '0',
6 PRIMARY KEY (`id`)
7) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_spanish2_ci AUTO_INCREMENT=55 ;