Installation
Simple explanation on how to install this resource.
1
Download resource from your CFX key
Head to CFX Portal and download the resource.
2
Run the SQL query in your DB Server
You will find the query file in the[SQL]
folder, or if you lost it you can copy it from here:
CREATE TABLE `zpvipsystem` (
`identifier` VARCHAR(255) NOT NULL DEFAULT '' COLLATE 'utf8mb4_general_ci',
`name` VARCHAR(255) NOT NULL COLLATE 'utf8mb4_general_ci',
`adderidentifier` VARCHAR(255) NOT NULL DEFAULT '' COLLATE 'utf8mb4_general_ci',
`addername` VARCHAR(255) NOT NULL COLLATE 'utf8mb4_general_ci',
`level` INT(3) NOT NULL,
`dateadded` DATETIME NOT NULL DEFAULT current_timestamp(),
`expiredate` VARCHAR(255) NOT NULL DEFAULT '0' COLLATE 'utf8mb4_general_ci',
PRIMARY KEY (`identifier`) USING BTREE
)
COLLATE='utf8mb4_general_ci'
ENGINE=InnoDB
;
3
5
Last updated