View Single Post
Jumpman
Senior Member
Join Date: Mar 2010
Location: Denmark
Old 01-18-2012 , 03:46   Re: SQL Admin Plugins MultiServ edition
Reply With Quote #10

That im not understand MistaGee

In your first post you write this

sm_servers:
  • id INT PRIMARY KEY
  • ip VARCHAR(15)
  • port INT
In your last post you write mysql sting should be

CREATE TABLE `sm_servers` (
`id` int(11) NOT NULL auto_increment,
`ip` varchar(15) NOT NULL,
`port` int(11) NOT NULL,
`name` varchar(200) default NULL,
PRIMARY KEY (`id`)
);

What to use the last post have one more table "name" should i use your first post or the last post ?
Jumpman is offline