Error in Plus Emu

Jan 7, 2016
194
15
That means you are missing a column in a table that it's calling from, so you need to look through your .sql file and find where it should have "key" at or similiar.
 
Maybe this is what you are missing:
Code:
-- Table structure for `server_settings`
-- ----------------------------
DROP TABLE IF EXISTS `server_settings`;
CREATE TABLE `server_settings` (
  `key` varchar(255) NOT NULL DEFAULT 'server.variable',
  `value` text NOT NULL,
  `description` text NOT NULL,
  PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
 

Alezo

Member
Dec 18, 2016
90
10
That means you are missing a column in a table that it's calling from, so you need to look through your .sql file and find where it should have "key" at or similiar.
 
Maybe this is what you are missing:
Code:
-- Table structure for `server_settings`
-- ----------------------------
DROP TABLE IF EXISTS `server_settings`;
CREATE TABLE `server_settings` (
  `key` varchar(255) NOT NULL DEFAULT 'server.variable',
  `value` text NOT NULL,
  `description` text NOT NULL,
  PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

Thanks for your help!
 

Users who are viewing this thread

Top