Jump to content
MakeWebGames

Recommended Posts

Posted

Re: attack logs problem

CREATE TABLE `attacklogs` (

`log_id` int(11) NOT NULL auto_increment,

`attacker` int(11) NOT NULL default '0',

`attacked` int(11) NOT NULL default '0',

`result` enum('won','lost') NOT NULL default 'won',

`time` int(11) NOT NULL default '0',

`stole` int(11) NOT NULL default '0',

`attacklog` longtext NOT NULL,

PRIMARY KEY (`log_id`)

) ENGINE=MyISAM ;

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...