public function GeofieldBackendDefault::schema in Geofield 8
Provides the specific database schema for the specific backend.
Return value
array The schema value array.
Overrides GeofieldBackendPluginInterface::schema
File
- src/
Plugin/ GeofieldBackend/ GeofieldBackendDefault.php, line 23
Class
- GeofieldBackendDefault
- Default backend for Geofield.
Namespace
Drupal\geofield\Plugin\GeofieldBackendCode
public function schema() {
return [
'type' => 'blob',
'size' => 'big',
'not null' => FALSE,
];
}