Here is the table

CREATE TABLE `types_appointment` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `default` tinyint(4) NOT NULL,
  `doctor_id` int(11) NOT NULL,
  `label_fr` varchar(250) DEFAULT NULL,
  `label_nl` varchar(250) DEFAULT NULL,
  `label_en` varchar(250) DEFAULT NULL,
  `duration` int(11) NOT NULL COMMENT 'in minutes',
  `description_fr` text,
  `description_nl` text,
  `description_en` text,
  PRIMARY KEY (`id`),
  KEY `doctor_id` (`doctor_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8;
-- 
View this message in context: 
http://zend-framework-community.634137.n4.nabble.com/Quote-reserved-keywords-tp2525558p2525694.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to