diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 6cc942b88c..da2a1397eb 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,10 @@ +2010-10-06 Miguel de Dios + + * extras/pandoradb_migrate_v3.1_to_v3.2.sql: added default sound events in + tconfig, fixed bug that found Raul. Thanks for the tips, Raul. + + Fixes: #3073370 + 2010-10-06 Miguel de Dios * include/functions_config.php: added in function "process_config" added diff --git a/pandora_console/extras/pandoradb_migrate_v3.1_to_v3.2.sql b/pandora_console/extras/pandoradb_migrate_v3.1_to_v3.2.sql index 27f6ea374d..4be3555879 100644 --- a/pandora_console/extras/pandoradb_migrate_v3.1_to_v3.2.sql +++ b/pandora_console/extras/pandoradb_migrate_v3.1_to_v3.2.sql @@ -126,3 +126,18 @@ CREATE TABLE IF NOT EXISTS `tagent_custom_data` ( -- ----------------------------------------------------- ALTER TABLE `tevento` MODIFY COLUMN `user_comment` TEXT NOT NULL; + + + + +-- ----------------------------------------------------------------------- +-- Data insertion -- +-- ----------------------------------------------------------------------- + +-- ----------------------------------------------------- +-- Table `tconfig` +-- ----------------------------------------------------- +INSERT INTO tconfig (`token`, `value`) VALUES ('sound_alert', 'include/sounds/air_shock_alarm.wav'); +INSERT INTO tconfig (`token`, `value`) VALUES ('sound_critical', 'include/sounds/Star_Trek_emergency_simulation.wav'); +INSERT INTO tconfig (`token`, `value`) VALUES ('sound_warning', 'include/sounds/negativebeep.wav'); +