diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index ff52fc2a71..bdbd121268 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2011-05-16 Juan Manuel Ramon + + * pandoradb.oracle.sql: Removed PK from id_agente_modulo field of + tagente_datos_string table. + 2011-05-16 Vanessa Gil * godmode/alerts/alert_list_list.php diff --git a/pandora_console/pandoradb.oracle.sql b/pandora_console/pandoradb.oracle.sql index e914eae307..a98de05e0c 100644 --- a/pandora_console/pandoradb.oracle.sql +++ b/pandora_console/pandoradb.oracle.sql @@ -104,7 +104,7 @@ CREATE SEQUENCE tagente_datos_inc_s INCREMENT BY 1 START WITH 1; CREATE OR REPLACE TRIGGER tagente_datos_inc_inc BEFORE INSERT ON tagente_datos_inc REFERENCING NEW AS NEW FOR EACH ROW BEGIN SELECT tagente_datos_inc_s.nextval INTO :NEW.ID_ADI FROM dual; END;; CREATE TABLE tagente_datos_string ( - id_agente_modulo NUMBER(10, 0) NOT NULL PRIMARY KEY, + id_agente_modulo NUMBER(10, 0) NOT NULL, datos CLOB NOT NULL, utimestamp NUMBER(10, 0) default 0 NOT NULL );