我在數據庫中收到錯誤。我遇到了無效的默認值時間戳。'timestamp'的默認值無效
這裏是我的數據庫:
CREATE TABLE IF NOT EXISTS `post` (
`id` int(11) NOT NULL,
`text` varchar(10000) NOT NULL,
`threadId` int(11) NOT NULL,
`userId` int(11) NOT NULL,
`dateCreated` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`timestamp` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`isModified` tinyint(4) NOT NULL DEFAULT '0'
) ENGINE=InnoDB AUTO_INCREMENT=171 DEFAULT CHARSET=latin1;
CREATE TABLE IF NOT EXISTS `category` (
`id` int(11) NOT NULL,
`name` varchar(100) NOT NULL,
`timestamp` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`color` varchar(10) DEFAULT '#00bcd4',
`icon` varchar(100) NOT NULL DEFAULT 'https://mymonas.com/forum/category_icon/ic_question.png'
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
我可以建議你改變你的角色設置成'UTF8mb4'的日期時間數據類型,因爲這會未來將使用wyrd字符來回避問題。 [更多這裏](http://stackoverflow.com/questions/279170/utf-8-all-the-way-through) – Martin
我得到了同樣的問題,#1067 - '時間戳'的默認值無效 –
噢,這是一個旁白,而不是一個解決方案本身。 – Martin