Files
Paradise/SQL/updates/20-21.sql
dearmochi 3c87d9a396 Adds the Volume Mixer to adjust individual channel volumes (#15507)
* Adds the Volume Mixer

* Address AA

* LF -> CRLF

* Puts thunderdome.ogg on CHANNEL_ADMIN

* Update interface name
2021-02-25 22:30:19 +00:00

9 lines
301 B
SQL

# Updating DB from 20-21
# Replaces volume (number) column by volume_mixer (text) ~dearmochi
# Add column to player
ALTER TABLE `player` ADD COLUMN `volume_mixer` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL AFTER `volume`;
# Remove column from player
ALTER TABLE `player` DROP COLUMN `volume`;