2012-02-16 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql extras/pandoradb_migrate_4.0.x_to_4.1.oracle.sql extras/pandoradb_migrate_4.0.x_to_4.1.postgreSQL.sql: Added 'tevento_fields' row in tconfig table. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5619 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
dfb467a571
commit
c5f1f72057
|
@ -1,3 +1,10 @@
|
|||
2012-02-16 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||
|
||||
* extras/pandoradb_migrate_4.0.x_to_4.1.mysql.sql
|
||||
extras/pandoradb_migrate_4.0.x_to_4.1.oracle.sql
|
||||
extras/pandoradb_migrate_4.0.x_to_4.1.postgreSQL.sql: Added
|
||||
'tevento_fields' row in tconfig table.
|
||||
|
||||
2012-02-16 Vanessa Gil <vanessa.gil@artica.es>
|
||||
* operation/events/events_list: Changed extended info
|
||||
to event list.
|
||||
|
|
|
@ -155,5 +155,6 @@ PRIMARY KEY (`id_filter`)
|
|||
ALTER TABLE tconfig MODIFY value TEXT NOT NULL;
|
||||
--Join the all ips of "list_ACL_IPs_for_API_%" in one row (now We have a field "value" with hudge size)
|
||||
INSERT INTO tconfig (token, `value`) SELECT 'list_ACL_IPs_for_API', GROUP_CONCAT(`value` SEPARATOR ';') AS `value` FROM tconfig WHERE token LIKE "list_ACL_IPs_for_API%";
|
||||
INSERT INTO `tconfig` (`token`, `value`) VALUES ('event_fields', 'evento,id_agente,estado,timestamp');
|
||||
DELETE FROM tconfig WHERE token LIKE "list_ACL_IPs_for_API_%";
|
||||
|
||||
|
|
|
@ -147,3 +147,4 @@ CREATE TABLE tevent_filter (
|
|||
-- Table `tconfig`
|
||||
-- -----------------------------------------------------
|
||||
ALTER TABLE tconfig MODIFY value TEXT NOT NULL;
|
||||
INSERT INTO tconfig (token, value) VALUES ('event_fields', 'evento,id_agente,estado,timestamp');
|
||||
|
|
|
@ -134,3 +134,4 @@ CREATE TABLE "tevent_filter" (
|
|||
ALTER TABLE "tconfig" ALTER COLUMN "value" TYPE TEXT;
|
||||
|
||||
INSERT INTO tconfig ("token", "value") SELECT 'list_ACL_IPs_for_API', array_to_string(ARRAY(SELECT value FROM tconfig WHERE token LIKE 'list_ACL_IPs_for_API%'), ';') AS "value";
|
||||
INSERT INTO "tconfig" ("token", "value") VALUES ('event_fields', 'evento,id_agente,estado,timestamp');
|
||||
|
|
Loading…
Reference in New Issue