Servus,
ich bin ein absoluter Laie was MySQL angeht.
Folgende Situation:
Ich wollte einen FiveM-Server aufsetzen und die .sql Datei mit HeidiSQL importieren, leider kommt die ganze Zeit eine Fehlermeldung.
Ich habe schon meinen Kumpel Google genutzt, leider werde ich daraus nicht schlau.
Hier sind doch bestimmt ein paar MySQL-Genies unterwegs, welche mir im Handumdrehen helfen können.
Fehlercode:
Code
SQL Fehler (1171): All parts of a PRIMARY KEY must be NOT NULL; if you need NULL in a key, use UNIQUE insteaduery
Snippet aus der SQL-Datei:
Code
CREATE TABLE `characters` (
`id` INT(11) NULL AUTO_INCREMENT,
`owner` VARCHAR(50) DEFAULT NULL,
`first_name` VARCHAR(50) NOT NULL DEFAULT 'John',
`last_name` VARCHAR(50) NOT NULL DEFAULT 'Doe',
`date_created` TIMESTAMP NOT NULL DEFAULT current_timestamp(),
`cash` INT(9) DEFAULT 500,
`bank` INT(9) NOT NULL DEFAULT 5000,
`phone_number` BIGINT(11) NOT NULL DEFAULT 0,
`dob` DATE NOT NULL DEFAULT '0000-00-00',
`story` TEXT NOT NULL,
`new` INT(1) NOT NULL DEFAULT 1,
`deleted` INT(11) NOT NULL DEFAULT 0,
`deletion_date` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00',
`gender` INT(1) NOT NULL DEFAULT 0,
`jail_time` INT(11) NOT NULL DEFAULT 0,
`dirty_money` INT(11) NOT NULL DEFAULT 0,
`gang_type` INT(11) NOT NULL DEFAULT 0,
`jail_time_mobster` INT(11) NOT NULL DEFAULT 0,
`judge_type` INT(11) NOT NULL DEFAULT 0,
`iswjob` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (id)
);
Alles anzeigen
Ich danke euch schon mal im voraus!