2011-07-26 Sergio Martin <sergio.martin@artica.es>
* extras/pandoradb_migrate_v3.2_to_v4.0.sql: Changed null languages by "default" in tusuario to new languages system git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4626 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
84fca6657b
commit
d040ba901e
|
@ -1,3 +1,8 @@
|
||||||
|
2011-07-26 Sergio Martin <sergio.martin@artica.es>
|
||||||
|
|
||||||
|
* extras/pandoradb_migrate_v3.2_to_v4.0.sql: Changed null languages
|
||||||
|
by "default" in tusuario to new languages system
|
||||||
|
|
||||||
2011-07-26 Vanessa Gil <vanessa.gil@artica.es>
|
2011-07-26 Vanessa Gil <vanessa.gil@artica.es>
|
||||||
|
|
||||||
* operation/agentes/alerts_status_functions.php: Update the alerts search with "Filter" button.
|
* operation/agentes/alerts_status_functions.php: Update the alerts search with "Filter" button.
|
||||||
|
|
|
@ -63,6 +63,7 @@ CREATE TABLE IF NOT EXISTS `treport_content_item` (
|
||||||
ALTER TABLE `tusuario` ADD COLUMN `block_size` int(4) NOT NULL DEFAULT 20;
|
ALTER TABLE `tusuario` ADD COLUMN `block_size` int(4) NOT NULL DEFAULT 20;
|
||||||
ALTER TABLE `tusuario` ADD COLUMN `flash_chart` int(4) NOT NULL DEFAULT 1;
|
ALTER TABLE `tusuario` ADD COLUMN `flash_chart` int(4) NOT NULL DEFAULT 1;
|
||||||
ALTER TABLE `tusuario` ADD COLUMN `id_skin` int(10) unsigned NOT NULL;
|
ALTER TABLE `tusuario` ADD COLUMN `id_skin` int(10) unsigned NOT NULL;
|
||||||
|
UPDATE `tusuario` SET `language` = "default" WHERE `language` IS NULL;
|
||||||
|
|
||||||
-- -----------------------------------------------------
|
-- -----------------------------------------------------
|
||||||
-- Table `talert_actions`
|
-- Table `talert_actions`
|
||||||
|
|
Loading…
Reference in New Issue