Reboot 2023
1. Installation
Run this SQL command on your database
ALTER TABLE `permissions` ADD COLUMN `allowedcharactercount` INT(11) NULL DEFAULT '1';
ALTER TABLE `permissions` ADD COLUMN `ambient` JSON NOT NULL DEFAULT '{"ambiyansyeri":"Default","campfire":1,"tent":1}';if you get Error Code: 1101. BLOB, TEXT, GEOMETRY or JSON column 'ambient' can't have a default value this error, use this sql command
ALTER TABLE `permissions` ADD COLUMN `ambient` VARCHAR(100) NULL DEFAULT '{"ambiyansyeri":"Default","campfire":1,"tent":1}'Migration 2.0 to 2.5
You can run this sql command on your db or you can
ALTER TABLE `permissions`
CHANGE COLUMN `ambient` `ambient` VARCHAR(100) NULL DEFAULT '{"ambiyansyeri":"Default","campfire":1,"tent":1}' COLLATE 'utf8mb4_general_ci' AFTER `allowedcharactercount`;Copy qadr_identity into resource folder.
Folder name must be "qadr_identity"
add
ensure qadr_identityafter requirementsThis resource load some data from github. Some data
Last updated