data db - magemonkeystudio/divinity GitHub Wiki

🗃️ data.db

The data.db file is the default SQLite database used by Divinity to store persistent plugin data such as:

  • Player stats and progress
  • Item socketing, upgrades, and ownership
  • Module-specific save data (e.g. refine level, soulbound status)

This file is automatically generated in the plugins/Divinity/ directory if sqlite is selected in the config.yml file.


⚙️ Configuration

To control how and where this database is saved, edit the data section in config.yml.

➡️ See: data


💬 Notes

  • This file is only used if you're using type: sqlite under the data.storage section.
  • If you're using mysql instead, this file will not be created or used.
  • Avoid editing or moving this file while the server is running, as it may cause data corruption.

📦 Related