Skip to content

Latest commit

 

History

History
14 lines (13 loc) · 427 Bytes

README.md

File metadata and controls

14 lines (13 loc) · 427 Bytes

rsg-multijob

Add SQL to your database

CREATE TABLE IF NOT EXISTS `player_jobs` (
    `id` int(11) NOT NULL AUTO_INCREMENT,
    `citizenid` varchar(50) DEFAULT NULL,
    `job` varchar(50) DEFAULT NULL,
    `grade` INT(11) DEFAULT NULL,
    PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;