Hata Verdiği bölüm
-- Tablo için tablo yapısı `hb_cat` --DROP TABLE IF EXISTS `hb_cat`; CREATE TABLE IF NOT EXISTS `hb_cat` ( `id` int(11) NOT NULL AUTO_INCREMENT, `categoryId` int(11) DEFAULT NULL, `name` varchar(255) DEFAULT NULL, `displayName` varchar(255) DEFAULT NULL, `parentCategoryId` int(11) DEFAULT NULL, `leaf` int(11) DEFAULT NULL, `status` varchar(255) DEFAULT NULL, `sortId` int(11) DEFAULT NULL, `imageURL` varchar(255) DEFAULT NULL, `available` int(11) DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=4001 DEFAULT CHARSET=utf8;Hata :
#1293 - Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE clause