Jump to content

[SOLVED] Mysqll


Daney11

Recommended Posts

Hey, my mysql table only allows 127 entrys. It is InnoDB and when i try and add more than 127 entries they dont go in?

 

Any ideas

 

CREATE TABLE `logs` (

  `log_id` tinyint(100) NOT NULL auto_increment,

  `log_ip` varchar(100) NOT NULL,

  `log_site` varchar(100) NOT NULL,

  `log_user` varchar(100) NOT NULL,

  `log_type` varchar(100) NOT NULL,

  `log_body` text NOT NULL,

  PRIMARY KEY  (`log_id`)

) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=128 ;

 

Link to comment
https://forums.phpfreaks.com/topic/81078-solved-mysqll/
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.