Detailed description |
|
lors de la création des tables mysql, j'obtient ce message :
requête SQL:
CREATE TABLE mrbs_entry(
`id` int( 11 ) NOT NULL AUTO_INCREMENT ,
`start_time` int( 11 ) NOT NULL default '0',
`end_time` int( 11 ) NOT NULL default '0',
`entry_type` int( 11 ) NOT NULL default '0',
`repeat_id` int( 11 ) NOT NULL default '0',
`room_id` int( 11 ) NOT NULL default '1',
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ,
`create_by` varchar( 25 ) NOT NULL default '',
`name` varchar( 80 ) NOT NULL default '',
`type` char( 1 ) NOT NULL default 'E',
`description` text,
`statut_entry` char( 1 ) NOT NULL default '-',
`idUrgence` int( 11 ) NOT NULL default '4',
`idEtat` int( 11 ) NOT NULL default '1',
`idService` int( 11 ) NOT NULL default '0',
`contact` text,
`mailcontact` text,
`infosie` text,
PRIMARY KEY ( `id` )
)
MySQL a répondu:Documentation
#1064 - Erreur de syntaxe près de 'CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,`create_by` varcha' à la ligne 1 |
|