class Schema in MongoDB 8
Hierarchy
Expanded class hierarchy of Schema
File
- drivers/
lib/ Drupal/ Driver/ Database/ mongodb/ Schema.php, line 5
Namespace
Drupal\Driver\Database\mongodbView source
class Schema extends DoNothing {
public function tableExists() {
// This is only used for install and we only need to tell apart
// install_begin_request() from install_verify_database_ready().
return count(debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS)) == 3;
}
public function findTables() {
// Simpletest needs this.
return [];
}
public function dropTable($table) {
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DoNothing:: |
function | |||
Schema:: |
public | function | ||
Schema:: |
public | function | ||
Schema:: |
public | function |