2011-09-01 Sergio Martin <sergio.martin@artica.es>
* extras/pandoradb_migrate_v3.2_to_v4.0.sql: Added delete_pending cleaning in the modules table to avoid possible past modules with wrong name git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4867 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
0b0ab85285
commit
76076f730f
|
@ -1,3 +1,9 @@
|
|||
2011-09-01 Sergio Martin <sergio.martin@artica.es>
|
||||
|
||||
* extras/pandoradb_migrate_v3.2_to_v4.0.sql: Added delete_pending
|
||||
cleaning in the modules table to avoid possible past modules with
|
||||
wrong name
|
||||
|
||||
2011-08-31 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* godmode/massive/massive_edit_modules.php: fixed when is selected "any"
|
||||
|
|
|
@ -227,6 +227,12 @@ UPDATE tagente_modulo SET prediction_module = 2 WHERE custom_integer_1 <> 0 AND
|
|||
|
||||
UPDATE tagente_modulo SET custom_integer_1 = prediction_module AND prediction_module = 1 WHERE custom_integer_1 = 0 AND prediction_module <> 0;
|
||||
|
||||
-- -----------------------------------------------------
|
||||
-- Table `tagente_modulo` to set delete_pending name to the delete pending modules to clean possible database errors
|
||||
-- -----------------------------------------------------
|
||||
|
||||
UPDATE tagente_modulo SET nombre = 'delete_pending' WHERE delete_pending = 1;
|
||||
|
||||
-- -----------------------------------------------------
|
||||
-- Table `talert_template_modules`
|
||||
-- -----------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue