Files
Paradise/SQL/updates/56-57.sql
Matt e19f20ca53 SQL Changes for Lamp Bloom PR (#25863)
* Changes copied from #24534

* Adds NOT NULL constraint to the new columns
2024-06-08 22:38:46 +00:00

7 lines
257 B
SQL

# Updating SQL from 56 to 57 - MrRomainzZ and Burza
# Add light settings to player preferences
ALTER TABLE `player`
ADD COLUMN `light` MEDIUMINT(3) NOT NULL DEFAULT '7' AFTER `sound`,
ADD COLUMN `glowlevel` TINYINT(1) NOT NULL DEFAULT '1' AFTER `light`;