2011-05-09 Miguel de Dios <miguel.dedios@artica.es>

* pandoradb.postgreSQL.sql: fixed the type of cell "id_agente_modulo" in the
	table "tagente_datos_string".



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4318 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2011-05-09 10:13:35 +00:00
parent f8cf38772d
commit 13fc352fca
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2011-05-09 Miguel de Dios <miguel.dedios@artica.es>
* pandoradb.postgreSQL.sql: fixed the type of cell "id_agente_modulo" in the
table "tagente_datos_string".
2011-05-06 Dario Rodriguez <dario.rodriguez@artica.es>
* include/graphs/functions_gd.php: Added new parameter to function

View File

@ -89,14 +89,18 @@ CREATE TABLE "tagente_datos_inc" (
);
CREATE INDEX "tagente_datos_inc_id_agente_modulo_idx" ON "tagente_datos_inc"("id_agente_modulo");
CREATE TABLE "tagente_datos_string" (
"id_agente_modulo" INTEGER NOT NULL PRIMARY KEY,
"id_agente_modulo" INTEGER NOT NULL default 0,
"datos" TEXT NOT NULL,
"utimestamp" INTEGER NOT NULL default 0
);
CREATE INDEX "tagente_datos_string_id_agente_modulo_idx" ON "tagente_datos_string"("id_agente_modulo");
CREATE INDEX "tagente_datos_string_utimestamp_idx" ON "tagente_datos_string"("utimestamp");
CREATE TABLE "tagente_datos_log4x" (
"id_tagente_datos_log4x" BIGSERIAL NOT NULL PRIMARY KEY,
"id_agente_modulo" INTEGER NOT NULL default 0,