You are here

protected static function DatabaseStorage::schemaDefinition in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Config/DatabaseStorage.php \Drupal\Core\Config\DatabaseStorage::schemaDefinition()

Defines the schema for the configuration table.

@internal

1 call to DatabaseStorage::schemaDefinition()
DatabaseStorage::ensureTableExists in core/lib/Drupal/Core/Config/DatabaseStorage.php
Check if the config table exists and create it if not.

File

core/lib/Drupal/Core/Config/DatabaseStorage.php, line 186

Class

DatabaseStorage
Defines the Database storage.

Namespace

Drupal\Core\Config

Code

protected static function schemaDefinition() {
  $schema = [
    'description' => 'The base table for configuration data.',
    'fields' => [
      'collection' => [
        'description' => 'Primary Key: Config object collection.',
        'type' => 'varchar_ascii',
        'length' => 255,
        'not null' => TRUE,
        'default' => '',
      ],
      'name' => [
        'description' => 'Primary Key: Config object name.',
        'type' => 'varchar_ascii',
        'length' => 255,
        'not null' => TRUE,
        'default' => '',
      ],
      'data' => [
        'description' => 'A serialized configuration object data.',
        'type' => 'blob',
        'not null' => FALSE,
        'size' => 'big',
      ],
    ],
    'primary key' => [
      'collection',
      'name',
    ],
  ];
  return $schema;
}