From 14faedde2ccedc5128b93edadb654f05aa25abcc Mon Sep 17 00:00:00 2001 From: jsatoh Date: Wed, 3 Apr 2013 00:32:54 +0000 Subject: [PATCH] 2013-04-03 Junichi Satoh * extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql, extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql, extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: Removed an unnecessary modification, because 'talert_compound' is obsolete. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@7917 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 7 +++++++ .../extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql | 5 ----- .../extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql | 6 ------ .../extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql | 6 ------ 4 files changed, 7 insertions(+), 17 deletions(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 140e319f85..7aa3d9d918 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,10 @@ +2013-04-03 Junichi Satoh + + * extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql, + extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql, + extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql: Removed an unnecessary + modification, because 'talert_compound' is obsolete. + 2013-04-02 Dario Rodriguez * include/functions_api.php: New function to create a tag diff --git a/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql b/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql index 6e7761141f..db7bcb9481 100644 --- a/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql +++ b/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.mysql.sql @@ -289,11 +289,6 @@ UPDATE `tusuario` SET `metaconsole_access` = 'advanced' WHERE `is_admin` = 1; -- ---------------------------------------------------------------------- ALTER TABLE `tmensajes` MODIFY COLUMN `mensaje` TEXT NOT NULL; --- ---------------------------------------------------------------------- --- Table `talert_compound` --- ---------------------------------------------------------------------- -ALTER TABLE `talert_compound` ADD COLUMN `special_day` tinyint(1) DEFAULT '0'; - -- ---------------------------------------------------------------------- -- Table `talert_commands` -- ---------------------------------------------------------------------- diff --git a/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql b/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql index 1a458a6bcd..f841bd8e38 100644 --- a/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql +++ b/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.oracle.sql @@ -248,12 +248,6 @@ ALTER TABLE treport_content_item ADD (operation CLOB default ''); -- ----------------------------------------------------- ALTER TABLE tmensajes MODIFY mensaje VARCHAR2(255) NOT NULL DEFAULT ''; --- ----------------------------------------------------- --- Table talert_compound --- ----------------------------------------------------- - -ALTER TABLE talert_compound ADD (special_day NUMBER(5,0) default 0); - -- ----------------------------------------------------- -- Table tnetwork_component -- ----------------------------------------------------- diff --git a/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql b/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql index 122339b183..579f37e4f8 100644 --- a/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql +++ b/pandora_console/extras/pandoradb_migrate_4.0.x_to_5.0.postgreSQL.sql @@ -262,12 +262,6 @@ ALTER TABLE "treport_content_item" ADD COLUMN "operation" text default ''; -- ----------------------------------------------------- ALTER TABLE "tmensajes" ALTER COLUMN "mensaje" TYPE TEXT; --- ----------------------------------------------------- --- Table "talert_compound" --- ----------------------------------------------------- - -ALTER TABLE "talert_compound" ADD COLUMN "special_day" SMALLINT default 0; - -- ----------------------------------------------------- -- Table "tnetwork_component" -- -----------------------------------------------------