Vettra Posted March 1, 2018 Group: Members Topic Count: 19 Topics Per Day: 0.01 Content Count: 34 Reputation: 0 Joined: 07/19/17 Last Seen: January 23, 2020 Share Posted March 1, 2018 How i add a table? Quote Link to comment Share on other sites More sharing options...
0 Sryx Posted March 1, 2018 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 520 Reputation: 64 Joined: 11/19/11 Last Seen: October 19, 2024 Share Posted March 1, 2018 14 minutes ago, Vettra said: How i add a table? Try this. (or check your main.sql) CREATE TABLE IF NOT EXISTS `achievement` ( `char_id` int(11) unsigned NOT NULL default '0', `id` bigint(11) unsigned NOT NULL, `count1` mediumint(8) unsigned NOT NULL default '0', `count2` mediumint(8) unsigned NOT NULL default '0', `count3` mediumint(8) unsigned NOT NULL default '0', `count4` mediumint(8) unsigned NOT NULL default '0', `count5` mediumint(8) unsigned NOT NULL default '0', `count6` mediumint(8) unsigned NOT NULL default '0', `count7` mediumint(8) unsigned NOT NULL default '0', `count8` mediumint(8) unsigned NOT NULL default '0', `count9` mediumint(8) unsigned NOT NULL default '0', `count10` mediumint(8) unsigned NOT NULL default '0', `completed` datetime, `rewarded` datetime, PRIMARY KEY (`char_id`,`id`), KEY `char_id` (`char_id`) ) ENGINE=MyISAM; Quote Link to comment Share on other sites More sharing options...
Question
Vettra
How i add a table?
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.