Tomo Posted December 12, 2006 Share Posted December 12, 2006 I'm installing a mod on a game for a friend but I'm not really good with MySQL, but I guess you have to learn some time.The readme contains the following:[code]insert and new field into USERS with the followingwillmax (int)11 default 100run this queryCREATE TABLE `proposals` ( `id` int(11) NOT NULL auto_increment, `proposer` int(11) NOT NULL default '0', `proposed` int(11) NOT NULL default '0', PRIMARY KEY (`id`)) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=110 ;[/code]Can someone explain what I have to do? I've found the USERS part and I tried to execute a query but I don't think it worked. Quote Link to comment Share on other sites More sharing options...
btherl Posted December 12, 2006 Share Posted December 12, 2006 How are you accessing mysql? Using phpmyadmin? Quote Link to comment Share on other sites More sharing options...
fenway Posted December 15, 2006 Share Posted December 15, 2006 Yes, where are you executing this from, and how can you tell it didn't work? Quote Link to comment Share on other sites More sharing options...
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.