2010-10-06 Miguel de Dios <miguel.dedios@artica.es>
* 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 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3354 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
ca42767944
commit
f6893f2079
|
@ -1,3 +1,10 @@
|
|||
2010-10-06 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* 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 <miguel.dedios@artica.es>
|
||||
|
||||
* include/functions_config.php: added in function "process_config" added
|
||||
|
|
|
@ -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');
|
||||
|
||||
|
|
Loading…
Reference in New Issue