Merge pull request #6 from ss23/patch-1

Update MSSQLDatabaseConfigurationHelper.php
This commit is contained in:
Sean Harvey 2013-06-20 20:04:47 -07:00
commit 696c889fc1

View File

@ -189,4 +189,15 @@ class MSSQLDatabaseConfigurationHelper implements DatabaseConfigurationHelper {
);
}
/**
* Ensure we have permissions to alter tables.
*
* @param array $databaseConfig Associative array of db configuration, e.g. "server", "username" etc
* @return array Result - e.g. array('okay' => true, 'applies' => true), where applies is whether
* the test is relevant for the database
*/
public function requireDatabaseAlterPermissions($databaseConfig) {
return array('success' => true, 'applies' => false);
}
}