bonjour j'ai une petite erreur sur la base seriez vous me dire le pq merci


Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CREATE TABLE `chat_msg` (
  `id` bigint(20) unsigned NOT NULL auto_increment,
  `from` bigint(20) unsigned NOT NULL default '0',
  `to` bigint(20) unsigned NOT NULL default '0',
  `born` timestamp NULL default '0000-00-00 00:00:00',
  `msg` varchar(255) NOT NULL,
  PRIMARY KEY  (`id`),
  KEY `to` (`to`),
  KEY `from` (`from`),
  KEY `born` (`born`)
) ENGINE=InnoDB
 
MySQL a répondu:
 
Something is wrong in your syntax près de 'ENGINE=InnoDB' à la ligne 11