This commit is contained in:
Alexander M. Turek
2003-02-27 23:07:43 +00:00
parent 916133f63b
commit 529e28b153
3 changed files with 101 additions and 100 deletions

View File

@@ -5,17 +5,19 @@ phpMyAdmin - Changelog
$Id$
$Source$
2003-02-17 Michal Cihar <nijel@users.sourceforge.net>
2003-02-27 Michal Cihar <nijel@users.sourceforge.net>
* lang/czech: Updated.
* lang/english: Resorted.
2003-02-25 Alexander M. Turek <rabus@users.sourceforge.net>
2003-02-27 Alexander M. Turek <rabus@users.sourceforge.net>
* libraries/common.lib.php3, libraries/config_import.lib.php3:
- Backwards compatibility;
- Removed some unnecessary code;
- Added a small HOWTO.
* config.inc.php3: The tab settings don't fit into the 'left frame' part.
* lang/german-*.inc.php3: Grammar.
* Documentation.html: Fixed some dead links.
* scripts/create_tables.sql: Adjusted table comments.
2003-02-27 Garvin Hicking <me@supergarv.de>
* libraries/common.lib.php3, tbl_properties_links.php3, db_details_links.php3,

View File

@@ -778,7 +778,7 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
in a table dump. Please see the relevant configuration directives later on.
<br /><br />
Also new in release 2.5.0 is a mime-transformation system which is also based on
the following table structure. See <a href="transformations">Transformations</a>
the following table structure. See <a href="#transformations">Transformations</a>
for further information. To use the mime-transformation system, your column_info
table has to have the three new fields 'mimetype', 'transformation', 'transformation_options'.
<br /><br />
@@ -1499,7 +1499,7 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
<dt><b>$cfg['BrowseMIME'] </b>boolean</dt>
<dd>
Enable <a href="transformations">MIME-transformations</a>.
Enable <a href="#transformations">MIME-transformations</a>.
<br /><br />
</dd>

View File

@@ -45,7 +45,7 @@ CREATE TABLE `PMA_table_info` (
`table_name` varchar(64) NOT NULL default '',
`display_field` varchar(64) NOT NULL default '',
PRIMARY KEY (`db_name`, `table_name`)
) TYPE=MyISAM COMMENT='Table information for phpMyAdmin';
) TYPE=MyISAM COMMENT='Table information for phpMyAdmin';
CREATE TABLE `PMA_table_coords` (
`db_name` varchar(64) NOT NULL default '',
@@ -73,10 +73,9 @@ CREATE TABLE `PMA_column_info` (
mimetype varchar(255) NOT NULL default '',
transformation varchar(255) NOT NULL default '',
transformation_options varchar(255) NOT NULL default '',
PRIMARY KEY (id),
UNIQUE KEY db_name (db_name, table_name, column_name)
) TYPE=MyISAM COMMENT='Comments for Columns';
) TYPE=MyISAM COMMENT='Column Information for phpMyAdmin';
CREATE TABLE `PMA_history` (
`id` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,