Im getting a #1064 syntax error everytime i try to enter the banking_data table in Mysql on phpMyADmin. here is what I'm trying to install. PLEASE HELP
SET FOREIGN_KEY_CHECKS=0;
	-- ----------------------------
	-- Table structure for `banking_data`
	-- ----------------------------
	DROP TABLE IF EXISTS `banking_data`;
	CREATE TABLE `banking_data` (
	  `PlayerUID` varchar(20) NOT NULL DEFAULT '0',
	  `PlayerName` varchar(128) NOT NULL DEFAULT 'Null',
	  `BankSaldo` bigint(24) NOT NULL DEFAULT '0',
	  `LastUpdated` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
	  PRIMARY KEY (`PlayerUID`)
	) ENGINE=InnoDB DEFAULT CHARSET=utf8;
	-- ----------------------------
	-- Table structure for `character_data`
	-- ----------------------------
ALTER TABLE character_data ADD CashMoney int(11) NOT NULL DEFAULT 0 AFTER Infected;

