2013-01-30 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql: Added meta_num_elements token to tconfig in pandora db dump. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7552 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
80bd04ca3c
commit
be7e5dc1f4
|
@ -1,3 +1,10 @@
|
|||
2013-01-30 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||
|
||||
* extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql
|
||||
extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql
|
||||
extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql: Added
|
||||
meta_num_elements token to tconfig in pandora db dump.
|
||||
|
||||
2013-01-30 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* godmode/agentes/modificar_agente.php: fixed the menu to showing
|
||||
|
|
|
@ -236,7 +236,8 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES
|
|||
('compare_pass', 3),
|
||||
('meta_style', 'meta_pandora'),
|
||||
('enable_refr', 0),
|
||||
('show_vc', 1);
|
||||
('show_vc', 1),
|
||||
('meta_num_elements', 100);
|
||||
UPDATE tconfig SET `value`='comparation' WHERE `token`= 'prominent_time';
|
||||
|
||||
-- ----------------------------------------------------------------------
|
||||
|
|
|
@ -281,6 +281,7 @@ INSERT INTO tconfig (token, value) VALUES ('compare_pass', 3);
|
|||
INSERT INTO tconfig (token, value) VALUES ('meta_style', 'meta_pandora');
|
||||
INSERT INTO tconfig (token, value) VALUES ('enable_refr', 0);
|
||||
INSERT INTO tconfig (token, value) VALUES ('show_vc', 1);
|
||||
INSERT INTO tconfig (token, value) VALUES ('meta_num_elements', 1);
|
||||
|
||||
-- -----------------------------------------------------
|
||||
-- Table tpassword_history
|
||||
|
|
|
@ -296,7 +296,8 @@ INSERT INTO "tconfig" ("token", "value") VALUES
|
|||
('compare_pass', 3),
|
||||
('meta_style', 'meta_pandora'),
|
||||
('enable_refr', 0),
|
||||
('show_vc', 1);
|
||||
('show_vc', 1),
|
||||
('meta_num_elements', 100);
|
||||
|
||||
-- -----------------------------------------------------
|
||||
-- Table "tpassword_history"
|
||||
|
|
Loading…
Reference in New Issue