· 9 years ago · Oct 13, 2016, 12:14 AM
1 format(Query, sizeof(Query), "CREATE TABLE IF NOT EXISTS `accounts` (`id` int(11) AUTO_INCREMENT, PRIMARY KEY (`id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1");
2 mysql_query(Query);
3 format(Query, sizeof(Query), "ALTER TABLE `accounts` ADD `passwort` varchar(40) NOT NULL DEFAULT 'n/A'");
4 mysql_query(Query);