2011-05-16 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
* pandoradb.oracle.sql: Removed PK from id_agente_modulo field of tagente_datos_string table. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4356 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
1598d5e752
commit
aa9fab8c5f
|
@ -1,3 +1,8 @@
|
|||
2011-05-16 Juan Manuel Ramon <juanmanuel.ramon@artica.es>
|
||||
|
||||
* pandoradb.oracle.sql: Removed PK from id_agente_modulo field of
|
||||
tagente_datos_string table.
|
||||
|
||||
2011-05-16 Vanessa Gil <vanessa.gil@artica.es>
|
||||
|
||||
* godmode/alerts/alert_list_list.php
|
||||
|
|
|
@ -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
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue