#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'AS `COMMENT`
)' at line 9
CREATE TABLE IF NOT EXISTS `call_from` (
`from_id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'record ID',
`from_user_id` int(10) UNSIGNED DEFAULT NULL COMMENT 'account ID',
`from_widget_id` int(10) UNSIGNED DEFAULT NULL COMMENT 'ID of the PBX',
`from_caller_operator_id` int(10) UNSIGNED DEFAULT NULL COMMENT 'ID of the caller operator',
`from_callee_operator_id` int(10) UNSIGNED DEFAULT NULL COMMENT 'the ID of the operator who is calling',
`from_ip_info` text COLLATE utf8_unicode_ci is a COMMENT 'JSON object with information about the flag, country and city of the caller',
`from_created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'create Time entry',
`from_updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' AS `COMMENT`
) ;
Find more questions by tags MySQL