Skip to content

Custom Player Inventories [VORP] [REDM] | v1.0.6

Choose a tag to compare

@RosewoodRidge RosewoodRidge released this 17 May 16:15
· 8 commits to main since this release

<1.0.6>

  • Added automatic deletion of unused storages after configurable time period (default 60 days)

If you are updating from 1.0.3 or earlier, please update your database:

-- =========================================
-- UPGRADE EXISTING TABLE (1.0.3 → 1.0.6+)
-- =========================================
ALTER TABLE `character_storage`
  ADD COLUMN IF NOT EXISTS `authorized_jobs` TEXT NOT NULL DEFAULT '{}';
  ADD COLUMN IF NOT EXISTS `last_accessed` TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
  ADD COLUMN IF NOT EXISTS `is_preset` TINYINT(1) NOT NULL DEFAULT 0;