You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 20, 2022. It is now read-only.
CREATE TABLE `pz_gamemode`.`pz_users` ( `id` INT NOT NULL AUTO_INCREMENT , `license` VARCHAR(80) NOT NULL , `name` TEXT NOT NULL , `rank` INT NOT NULL , `rolePlayIdentity` TEXT NOT NULL , `createdAt` TEXT NOT NULL , `updatedAt` INT NOT NULL , PRIMARY KEY (`id`)) ENGINE = InnoDB;
-- Table ranks
CREATE TABLE `pz_gamemode`.`pz_ranks` ( `id` INT NOT NULL AUTO_INCREMENT , `identifier` TEXT NOT NULL , `display` TEXT NOT NULL , `color` TEXT NOT NULL , `permissions` TEXT NOT NULL , PRIMARY KEY (`id`)) ENGINE = InnoDB;