MyBB Community Forums

Full Version: Fehlermeldung sql error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

we got this error message and do not know
how to fix this error.

"MyBB has experienced an internal SQL error and cannot continue.

SQL Error: 1146 - Table 'do_games_de.mybb_warnings' doesn't exist Query: 

DELETE FROM mybb_warnings WHERE uid IN(321)
Please contact the MyBB Group for technical support."

We ask for your help

Thanks in advance

Yours sincerely
Arga

Admin at "do-games.de"

Admin bei "do-games.de"
if you are comfortable with database management application
(eg. phpMyAdmin) then you can use SQL query similar to below
CREATE TABLE mybb_warnings (
	wid int unsigned NOT NULL auto_increment,
	uid int unsigned NOT NULL default '0',
	tid int unsigned NOT NULL default '0',
	pid int unsigned NOT NULL default '0',
	title varchar(120) NOT NULL default '',
	points smallint unsigned NOT NULL default '0',
	dateline int unsigned NOT NULL default '0',
	issuedby int unsigned NOT NULL default '0',
	expires int unsigned NOT NULL default '0',
	expired tinyint(1) NOT NULL default '0',
	daterevoked int unsigned NOT NULL default '0',
	revokedby int unsigned NOT NULL default '0',
	revokereason text NOT NULL,
	notes text NOT NULL,
	KEY uid (uid),
	PRIMARY KEY (wid)
)

[SQL queries related guidance]