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

mysql probelm

amnart

New Member
Joined
Oct 2, 2008
Messages
75
Reaction score
0
SQL query:

CREATE TABLE `groups` (
`id` INT NOT NULL AUTO_INCREMENT ,
`name` VARCHAR( 255 ) NOT NULL COMMENT 'group name',
`flags` BIGINT UNSIGNED NOT NULL DEFAULT 0,
`customflags` BIGINT UNSIGNED NOT NULL DEFAULT 0,
`access` INT NOT NULL ,
`violationaccess` INT NOT NULL ,
`maxdepotitems` INT NOT NULL ,
`maxviplist` INT NOT NULL ,
`outfit` INT NOT NULL DEFAULT 0,
PRIMARY KEY ( `id` )
) ENGINE = InnoDB;


when im trying to import the database
 
SQL query:

CREATE TABLE `groups` (
`id` INT NOT NULL AUTO_INCREMENT ,
`name` VARCHAR( 255 ) NOT NULL COMMENT 'group name',
`flags` BIGINT UNSIGNED NOT NULL DEFAULT 0,
`customflags` BIGINT UNSIGNED NOT NULL DEFAULT 0,
`access` INT NOT NULL ,
`violationaccess` INT NOT NULL ,
`maxdepotitems` INT NOT NULL ,
`maxviplist` INT NOT NULL ,
`outfit` INT NOT NULL DEFAULT 0,
PRIMARY KEY ( `id` )
) ENGINE = InnoDB;


when im trying to import the database

and where's the problem? o.o
 
Back
Top Bottom