mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-19 14:51:27 +00:00
* Adds the Volume Mixer * Address AA * LF -> CRLF * Puts thunderdome.ogg on CHANNEL_ADMIN * Update interface name
9 lines
301 B
SQL
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`;
|