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
1 changed files with 12 additions and 1 deletions

View File

@ -188,5 +188,16 @@ class MSSQLDatabaseConfigurationHelper implements DatabaseConfigurationHelper {
'alreadyExists' => $alreadyExists
);
}
/**
* 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);
}
}
}