From 5908ab72bca63e9efb326e8148c1f8f0fb285de6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 21 Jul 2010 09:07:59 +0200 Subject: [PATCH] Clarify database upgrade instructions. We don't want to maintain all new tables in upgrade script as well. --- Documentation.html | 3 ++- scripts/upgrade_tables_mysql_4_1_2+.sql | 19 ------------------- 2 files changed, 2 insertions(+), 20 deletions(-) diff --git a/Documentation.html b/Documentation.html index 4c23ec6d4..67f9ff185 100644 --- a/Documentation.html +++ b/Documentation.html @@ -340,7 +340,8 @@ rm -rf config # remove not needed directory FAQ 1.23).

If you already had this infrastructure and upgraded to MySQL 4.1.2 - or newer, please use ./scripts/upgrade_tables_mysql_4_1_2+.sql.

+ or newer, please use ./scripts/upgrade_tables_mysql_4_1_2+.sql + and then create new tables by importing ./scripts/create_tables.sql.

You can use your phpMyAdmin to create the tables for you. Please be aware that you may need special (administrator) privileges to create the database diff --git a/scripts/upgrade_tables_mysql_4_1_2+.sql b/scripts/upgrade_tables_mysql_4_1_2+.sql index 3ab0e7401..1ff470e30 100644 --- a/scripts/upgrade_tables_mysql_4_1_2+.sql +++ b/scripts/upgrade_tables_mysql_4_1_2+.sql @@ -143,22 +143,3 @@ ALTER TABLE `pma_table_info` CHANGE `table_name` `table_name` VARCHAR(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT ''; ALTER TABLE `pma_table_info` CHANGE `display_field` `display_field` VARCHAR(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT ''; - --- -------------------------------------------------------- - --- --- Table structure for table `pma_designer_coords` --- - -CREATE TABLE IF NOT EXISTS `pma_designer_coords` ( - `db_name` varchar(64) NOT NULL default '', - `table_name` varchar(64) NOT NULL default '', - `x` INT, - `y` INT, - `v` TINYINT, - `h` TINYINT, - PRIMARY KEY (`db_name`,`table_name`) -) - ENGINE=MyISAM COMMENT='Table coordinates for Designer' - DEFAULT CHARACTER SET utf8 COLLATE utf8_bin; -