diff options
Diffstat (limited to 'includes/install.mysql.inc')
-rw-r--r-- | includes/install.mysql.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/install.mysql.inc b/includes/install.mysql.inc index 9db839263..9bab82c7a 100644 --- a/includes/install.mysql.inc +++ b/includes/install.mysql.inc @@ -54,7 +54,7 @@ function drupal_test_mysql($url, &$success) { $success = array('CONNECT'); // Test CREATE. - $query = 'CREATE TABLE drupal_install_test (id int(1) NULL)'; + $query = 'CREATE TABLE drupal_install_test (id int NULL)'; $result = mysql_query($query); if ($error = mysql_error()) { drupal_set_message(st('We were unable to create a test table on your MySQL database server with the command %query. MySQL reports the following message: %error.<ul><li>Are you sure the configured username has the necessary MySQL permissions to create tables in the database?</li></ul>For more help, see the <a href="http://drupal.org/node/258">Installation and upgrading handbook</a>. If you are unsure what these terms mean you should probably contact your hosting provider.', array('%query' => $query, '%error' => $error)), 'error'); |