mirror of
https://github.com/silverstripe/silverstripe-mssql
synced 2024-10-22 06:05:53 +00:00
Merge pull request #6 from ss23/patch-1
Update MSSQLDatabaseConfigurationHelper.php
This commit is contained in:
commit
696c889fc1
@ -188,5 +188,16 @@ class MSSQLDatabaseConfigurationHelper implements DatabaseConfigurationHelper {
|
|||||||
'alreadyExists' => $alreadyExists
|
'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);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user