added some documentation on how to update existing

column_comments tables and better information in testpage
This commit is contained in:
Mike Beck
2003-03-04 14:46:26 +00:00
parent ebcc8e598d
commit f9eaee2242
94 changed files with 115 additions and 95 deletions

View File

@@ -807,6 +807,17 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
put the table name in
<tt>$cfg['Servers'][$i]['column_info']</tt>
</li>
<li>
To update your PRE-2.4.1 Column_comments Table use this:<br />
<tt>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ALTER TABLE `PMA_column_comments` <br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ADD `mimetype` VARCHAR( 255 ) NOT NULL ,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ADD `transformation` VARCHAR( 255 ) NOT NULL ,<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ADD `transformation_options` VARCHAR( 255 ) NOT NULL ;<br />
</tt>
and remember that the Variable in config.inc.php has been renamed
from <br />$cfg['Servers'][$i]['column_comments'] to $cfg['Servers'][$i]['column_info']
</li>
</ul><br />
</dd>
@@ -3243,4 +3254,4 @@ Original Credits of Version 2.1.0
</p>
</body>
</html>
</html>