2012-03-25 Junichi Satoh <junichi@rworks.jp>

* extras/pandoradb_migrate_4.0.x_to_4.1.postgreSQL.sql,
	pandoradb.postgreSQL.sql: Fixed bad sql	syntaxes.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5830 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
jsatoh 2012-03-25 01:45:57 +00:00
parent 0d3cfc461c
commit 6aaeca1bb8
3 changed files with 13 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2012-03-25 Junichi Satoh <junichi@rworks.jp>
* extras/pandoradb_migrate_4.0.x_to_4.1.postgreSQL.sql,
pandoradb.postgreSQL.sql: Fixed bad sql syntaxes.
2012-03-25 Junichi Satoh <junichi@rworks.jp> 2012-03-25 Junichi Satoh <junichi@rworks.jp>
* include/db/postgresql.php: Fixed bad syntax for WHERE clause in * include/db/postgresql.php: Fixed bad syntax for WHERE clause in

View File

@ -50,7 +50,7 @@ CREATE TABLE "tnetflow_report_content" (
-- Table `tincidencia` -- Table `tincidencia`
-- ----------------------------------------------------- -- -----------------------------------------------------
ALTER TABLE "tincidencia" ADD COLUMN "id_agent" INTEGER(10) NULL DEFAULT 0; ALTER TABLE "tincidencia" ADD COLUMN "id_agent" INTEGER NULL DEFAULT 0;
-- ----------------------------------------------------- -- -----------------------------------------------------
-- Table `tagente` -- Table `tagente`
@ -65,7 +65,7 @@ ALTER TABLE "tagente" ADD COLUMN "url_address" text NULL default '';
CREATE TYPE type_talert_special_days_same_day AS ENUM ('monday','tuesday','wednesday','thursday','friday','saturday','sunday'); CREATE TYPE type_talert_special_days_same_day AS ENUM ('monday','tuesday','wednesday','thursday','friday','saturday','sunday');
CREATE TABLE "talert_special_days" ( CREATE TABLE "talert_special_days" (
"id" SERIAL NOT NULL PRIMARY KEY, "id" SERIAL NOT NULL PRIMARY KEY,
"date" DATE NOT NULL default '0000-00-00', "date" DATE NOT NULL default '0001-01-01',
"same_day" type_talert_special_days_same_day NOT NULL default 'sunday', "same_day" type_talert_special_days_same_day NOT NULL default 'sunday',
"description" TEXT "description" TEXT
); );
@ -167,9 +167,9 @@ ALTER TABLE "tusuario" ADD COLUMN "shortcut_data" text default '';
-- ----------------------------------------------------- -- -----------------------------------------------------
-- Table `tusuario` -- Table `tusuario`
-- ----------------------------------------------------- -- -----------------------------------------------------
ALTER TABLE "tusuario" ADD COLUMN "section" varchar(255) NOT NULL; ALTER TABLE "tusuario" ADD COLUMN "section" varchar(255) NOT NULL DEFAULT '';
ALTER TABLE "tusuario" ADD COLUMN "data_section" varchar(255) NOT NULL; ALTER TABLE "tusuario" ADD COLUMN "data_section" varchar(255) NOT NULL DEFAULT '';
-- ----------------------------------------------------- -- -----------------------------------------------------
-- Table `treport_content_item` -- Table `treport_content_item`

View File

@ -355,7 +355,7 @@ CREATE TABLE "talert_compound_actions" (
CREATE TYPE type_talert_special_days_same_day AS ENUM ('monday','tuesday','wednesday','thursday','friday','saturday','sunday'); CREATE TYPE type_talert_special_days_same_day AS ENUM ('monday','tuesday','wednesday','thursday','friday','saturday','sunday');
CREATE TABLE "talert_special_days" ( CREATE TABLE "talert_special_days" (
"id" SERIAL NOT NULL PRIMARY KEY, "id" SERIAL NOT NULL PRIMARY KEY,
"date" DATE NOT NULL default '0000-00-00', "date" DATE NOT NULL default '0001-01-01',
"same_day" type_talert_special_days_same_day NOT NULL default 'sunday', "same_day" type_talert_special_days_same_day NOT NULL default 'sunday',
"description" TEXT "description" TEXT
); );
@ -442,7 +442,7 @@ CREATE TABLE "tincidencia" (
"id_lastupdate" varchar(60) default NULL, "id_lastupdate" varchar(60) default NULL,
"id_agente_modulo" BIGINT NOT NULL, "id_agente_modulo" BIGINT NOT NULL,
"notify_email" INTEGER NOT NULL default 0, "notify_email" INTEGER NOT NULL default 0,
"id_agent" INTEGER(10) NULL default 0 "id_agent" INTEGER NULL default 0
); );
CREATE INDEX "tincidencia_id_1_idx" ON "tincidencia"("id_usuario","id_incidencia"); CREATE INDEX "tincidencia_id_1_idx" ON "tincidencia"("id_usuario","id_incidencia");
CREATE INDEX "tincidencia_id_agente_modulo_idx" ON "tincidencia"("id_agente_modulo"); CREATE INDEX "tincidencia_id_agente_modulo_idx" ON "tincidencia"("id_agente_modulo");
@ -700,8 +700,8 @@ CREATE TABLE "tusuario" (
"disabled" INTEGER NOT NULL default 1, "disabled" INTEGER NOT NULL default 1,
"shortcut" SMALLINT DEFAULT 0, "shortcut" SMALLINT DEFAULT 0,
"shortcut_data" text default '', "shortcut_data" text default '',
"section" varchar(255) NOT NULL, "section" varchar(255) NOT NULL DEFAULT '',
"data_section" varchar(255) NOT NULL "data_section" varchar(255) NOT NULL DEFAULT ''
); );
CREATE TABLE "tusuario_perfil" ( CREATE TABLE "tusuario_perfil" (