• 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!

Windows Date base import

agomez

Member
Joined
Jan 28, 2009
Messages
211
Reaction score
5
Hello :D
I created a date base, and when i import mine for the server (forgottenserver.sql) i got this issue:

PHP:
CREATETABLE`accounts` (

 `id` INT NOTNULLAUTO_INCREMENT ,
 `name` VARCHAR( 32)NOTNULL DEFAULT'',
 `password` VARCHAR( 255)NOTNULL /* VARCHAR(32) NOT NULL COMMENT 'MD5'*//* VARCHAR(40) NOT NULL COMMENT 'SHA1'*/,
 `salt` VARCHAR( 40)NOTNULL DEFAULT'',
 `premdays` INT NOTNULL DEFAULT0,
 `lastday` INTUNSIGNED NOTNULL DEFAULT0,
 `email` VARCHAR( 255)NOTNULL DEFAULT'',
 `key` VARCHAR( 32)NOTNULL DEFAULT'0',
 `blocked` TINYINT( 1)NOTNULL DEFAULTFALSE COMMENT'internal usage',
 `warnings` INT NOTNULL DEFAULT0,
 `group_id` INT NOTNULL DEFAULT1,
 PRIMARYKEY (`id`) ,
 UNIQUE (
 `name` 
)) ENGINE= InnoDB;


 
MySQL ha dicho: 
#1050 - Table '`fvusion`.`accounts`' already exists
can anyone help me
 
`accounts` already exists
what do you think it mean? :D
use this code or click on drop
Code:
DROP TABLE `accounts`
it will remove all the accounts
 
Back
Top