Jump to content

Basic MySQL Help [noob]


Tomo

Recommended Posts

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 following

willmax (int)11 default 100


run this query


CREATE 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.
Link to comment
https://forums.phpfreaks.com/topic/30290-basic-mysql-help-noob/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.