mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR Passing through DB->dontRequireField() to Database->dontRequireField() (from r78357)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@81468 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
ff254355e7
commit
51e6ce6727
@ -230,6 +230,16 @@ class DB {
|
||||
static function dontRequireTable($table) {
|
||||
return DB::$globalConn->dontRequireTable($table);
|
||||
}
|
||||
|
||||
/**
|
||||
* See {@link Database->dontRequireField()}.
|
||||
*
|
||||
* @param string $table The table name.
|
||||
* @param string $fieldName
|
||||
*/
|
||||
static function dontRequireField($table, $fieldName) {
|
||||
return DB::$globalConn->dontRequireField($table, $fieldName);
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks a table's integrity and repairs it if necessary.
|
||||
|
Loading…
Reference in New Issue
Block a user