From 463d9b1f3654d2fdbb9ba8bce768a7d3fd3c6e18 Mon Sep 17 00:00:00 2001 From: Ben Date: Sat, 11 Jul 2020 22:33:51 +0100 Subject: [PATCH] Change igloo music column type from `smallint` to `int` Sound studio music IDs are out of range --- houdini.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/houdini.sql b/houdini.sql index 9b854c0..68dbf18 100644 --- a/houdini.sql +++ b/houdini.sql @@ -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,