• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Error on import DB

KazzXD

New Member
Joined
Aug 31, 2007
Messages
63
Reaction score
0
ALTER TABLE `accounts` ADD CONSTRAINT `accounts_ibfk_1` FOREIGN KEY ( `group_id` ) REFERENCES `groups` ( `id` ) ;

How in can fix this? Please help!
 
sounds like you are trying to change account number somewhere?

if so, from the mysql command line u can easily remove the error
or if not this should still work for you :)

Code:
set foreign_key_checks=0;

then when you are done doing your edits just turn them back on

Code:
set foreign_key_checks=1;
 
Back
Top