Additions:
- Integrated MySQL into the plugin. You will need to update your `config.yml` to credit the new database configurations. You have the option to switch between SQLite and MySQL.
HOW TO UPLOAD:
1. Load the new update.
2. Go into your `config.yml` and copy the new database config at the bottom.
Code (YAML):
database:
type
:
"sqlite"
# Storage backend to use. Options: "sqlite" or "mysql"
filename
:
"species_data.db"
# SQLite filename (only used when type is "sqlite")
mysql:
host
:
"localhost"
# MySQL server hostname or IP address
port
: 3306
# MySQL server port
database
:
"vampyrreborn"
# Name of the MySQL database to connect to
username
:
"root"
# MySQL username
password
:
""
# MySQL password
use-ssl
: false
# Whether to use SSL for the MySQL connection
migration:
auto-migrate
: true
# Automatically migrate SQLite data to MySQL on first startup with MySQL enabled