Change igloo music column type from smallint to int

Sound studio music IDs are out of range
This commit is contained in:
Ben 2020-07-11 22:33:51 +01:00
parent da69239f49
commit 463d9b1f36

View File

@ -956,7 +956,7 @@ CREATE TABLE penguin_igloo_room (
penguin_id INT NOT NULL,
type INT NOT NULL,
flooring INT NOT NULL,
music SMALLINT NOT NULL DEFAULT 0,
music INT NOT NULL DEFAULT 0,
location INT NOT NULL,
locked BOOLEAN NOT NULL DEFAULT TRUE,
competition BOOLEAN NOT NULL DEFAULT FALSE,