Returns a DatabaseSchema object for manipulating the schema.
This method will lazy-load the appropriate schema library file.
DatabaseSchema The DatabaseSchema object for this connection.
public function schema() {
if (empty($this->schema)) {
$class = $this
->getDriverClass('DatabaseSchema', array(
'schema.inc',
));
if (class_exists($class)) {
$this->schema = new $class($this);
}
}
return $this->schema;
}