function 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 198  
Class
- DatabaseStorage
 - Defines the Database storage.
 
Namespace
Drupal\Core\ConfigCode
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;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.