diff --git a/sqlupdates/2_4_0-RC-1 to 2_4_0-RC-2.sql b/sqlupdates/2_4_0-RC-1 to 2_4_0-RC-2.sql index cd58db0d..548550d2 100644 --- a/sqlupdates/2_4_0-RC-1 to 2_4_0-RC-2.sql +++ b/sqlupdates/2_4_0-RC-1 to 2_4_0-RC-2.sql @@ -27,4 +27,23 @@ INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('hotel.gifts.box_types', INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('hotel.gifts.ribbon_types', '0,1,2,3,4,5,6,7,8,9,10'); -- Configurable mute time -INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('hotel.flood.mute.time', '30'); \ No newline at end of file +INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('hotel.flood.mute.time', '30'); + +-- TraxManager Jukebox Limits +INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('jukebox.limit.large', '20'); +INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('jukebox.limit.normal', '10'); + +-- Table structure for room_trax +DROP TABLE IF EXISTS `room_trax`; +CREATE TABLE `room_trax` ( + `room_id` int(11) NOT NULL, + `trax_item_id` int(11) NOT NULL +) ENGINE = InnoDB CHARACTER SET = armscii8 COLLATE = armscii8_general_ci ROW_FORMAT = Compact; + +-- Table structure for trax_playlist +DROP TABLE IF EXISTS `trax_playlist`; +CREATE TABLE `trax_playlist` ( + `trax_item_id` int(11) NOT NULL, + `item_id` int(11) NOT NULL +) ENGINE = InnoDB CHARACTER SET = armscii8 COLLATE = armscii8_general_ci ROW_FORMAT = Compact; +