Step 4

Database

Do not start the resource without first having installed the complete database, if you start the resource in the database, you will get critical errors

Gangwars database
CREATE TABLE `gang_areas` (
    `owner` VARCHAR(50) NOT NULL COLLATE 'utf8mb4_general_ci',
    `area` VARCHAR(50) NOT NULL COLLATE 'utf8mb4_general_ci',
    PRIMARY KEY (area) USING BTREE
)
COLLATE='utf8mb4_general_ci'
ENGINE=InnoDB
;

Last updated