mirror of
https://github.com/silverstripe/silverstripe-mssql
synced 2024-10-22 08:05:53 +02:00
Merge pull request #6 from ss23/patch-1
Update MSSQLDatabaseConfigurationHelper.php
This commit is contained in:
commit
696c889fc1
@ -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);
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user