bug [scripts] MySQL 5.5.5 does not accept TIMESTAMP(14) in create_tables.sql

This commit is contained in:
Marc Delisle
2010-07-25 07:53:07 -04:00
parent 31c18cbe11
commit 58021a8e6c
2 changed files with 2 additions and 1 deletions

View File

@@ -80,7 +80,7 @@ CREATE TABLE IF NOT EXISTS `pma_history` (
`username` varchar(64) NOT NULL default '',
`db` varchar(64) NOT NULL default '',
`table` varchar(64) NOT NULL default '',
`timevalue` timestamp(14) NOT NULL,
`timevalue` timestamp NOT NULL,
`sqlquery` text NOT NULL,
PRIMARY KEY (`id`),
KEY `username` (`username`,`db`,`table`,`timevalue`)