From d74a22aecf918dc791099fdf6f66bff93cff3a85 Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Mon, 1 Feb 2016 15:10:08 +0100 Subject: [PATCH] Added two field lost in the table tmap --- pandora_console/pandoradb.oracle.sql | 2 ++ pandora_console/pandoradb.postgreSQL.sql | 2 ++ pandora_console/pandoradb.sql | 2 ++ 3 files changed, 6 insertions(+) mode change 100755 => 100644 pandora_console/pandoradb.oracle.sql mode change 100755 => 100644 pandora_console/pandoradb.postgreSQL.sql mode change 100755 => 100644 pandora_console/pandoradb.sql diff --git a/pandora_console/pandoradb.oracle.sql b/pandora_console/pandoradb.oracle.sql old mode 100755 new mode 100644 index 1ecb8617af..921107608b --- a/pandora_console/pandoradb.oracle.sql +++ b/pandora_console/pandoradb.oracle.sql @@ -2062,6 +2062,7 @@ CREATE TABLE tsessions_php ( CREATE TABLE IF NOT EXISTS tmap ( id NUMBER(10, 0) PRIMARY KEY, id_group NUMBER(10, 0) DEFAULT 0, + id_user NUMBER(10, 0) DEFAULT 0, type NUMBER(5, 0) DEFAULT 0, subtype NUMBER(5, 0) DEFAULT 0, name VARCHAR2(100) DEFAULT '', @@ -2075,6 +2076,7 @@ CREATE TABLE IF NOT EXISTS tmap ( source_period NUMBER(10, 0) DEFAULT 0, source NUMBER(10, 0) DEFAULT 0, source_data VARCHAR2(250) DEFAULT '', + generation_method NUMBER(10, 0) DEFAULT 0, filter CLOB DEFAULT '', ); diff --git a/pandora_console/pandoradb.postgreSQL.sql b/pandora_console/pandoradb.postgreSQL.sql old mode 100755 new mode 100644 index 38c5e0b0b7..c5cd327c7f --- a/pandora_console/pandoradb.postgreSQL.sql +++ b/pandora_console/pandoradb.postgreSQL.sql @@ -1722,6 +1722,7 @@ CREATE TABLE "tsessions_php" ( CREATE TABLE IF NOT EXISTS "tmap" ( "id" SERIAL NOT NULL PRIMARY KEY, "id_group" INTEGER default 0, + "id_user" INTEGER default 0, "type" SMALLINT NOT NULL default 0, "subtype" SMALLINT NOT NULL default 0, "name" varchar(250) default '', @@ -1735,6 +1736,7 @@ CREATE TABLE IF NOT EXISTS "tmap" ( "source_period" INTEGER UNSIGNED NOT NULL default 0, "source" SMALLINT NOT NULL default 0, "source_data" varchar(250) default '', + "generation_method" SMALLINT NOT NULL default 0, "filter" TEXT ); diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql old mode 100755 new mode 100644 index f92f745eb6..0325ed6635 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -1830,6 +1830,7 @@ CREATE TABLE tsessions_php ( CREATE TABLE IF NOT EXISTS `tmap` ( `id` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT, `id_group` int(10) unsigned NOT NULL default 0, + `id_user` int(10) unsigned NOT NULL default 0, `type` int(10) unsigned NOT NULL default 0, `subtype` int(10) unsigned NOT NULL default 0, `name` varchar(250) default '', @@ -1843,6 +1844,7 @@ CREATE TABLE IF NOT EXISTS `tmap` ( `source_period` INTEGER UNSIGNED NOT NULL default 0, `source` INTEGER UNSIGNED NOT NULL default 0, `source_data` varchar(250) default '', + `generation_method` INTEGER UNSIGNED NOT NULL default 0, `filter` TEXT, PRIMARY KEY(`id`) ) ENGINE = InnoDB DEFAULT CHARSET=utf8;