This commit is contained in:
Stephen Shkardoon 2013-03-23 07:03:35 -07:00
commit 5d4c397827

View File

@ -161,5 +161,16 @@ class PostgreSQLDatabaseConfigurationHelper implements DatabaseConfigurationHelp
'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);
}
}