mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-23 07:20:50 +01:00
Updated sql file.
This commit is contained in:
parent
bf07e19864
commit
a528da5c31
@ -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');
|
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
|
-- Configurable mute time
|
||||||
INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('hotel.flood.mute.time', '30');
|
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;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user