From: stronk7 Date: Sat, 23 Sep 2006 21:23:05 +0000 (+0000) Subject: mysql alter table alter column is "modify column" X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=f8c485b071d0e91da1497cb1dadf8ecb0f9c121b;p=moodle.git mysql alter table alter column is "modify column" --- diff --git a/lib/xmldb/classes/generators/mysql/mysql.class.php b/lib/xmldb/classes/generators/mysql/mysql.class.php index ea26ce798a..ebaef7a290 100644 --- a/lib/xmldb/classes/generators/mysql/mysql.class.php +++ b/lib/xmldb/classes/generators/mysql/mysql.class.php @@ -53,6 +53,8 @@ class XMLDBmysql extends XMLDBGenerator { var $concat_character = null; //Characters to be used as concatenation operator. If not defined //MySQL CONCAT function will be use + var $alter_column_sql = 'ALTER TABLE TABLENAME MODIFY COLUMN COLUMNSPECS'; //The SQL template to alter columns + /** * Creates one new XMLDBmysql */