Skip to content
Snippets Groups Projects
Commit 6e9e85c0 authored by chx's avatar chx
Browse files

Added config table

parent bfa93e89
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -698,6 +698,37 @@ function system_schema() {
$schema['cache_menu']['description'] = 'Cache table for the menu system to store router information as well as generated link trees for various menu/page/user combinations.';
$schema['cache_path'] = $schema['cache'];
$schema['cache_path']['description'] = 'Cache table for path alias lookup.';
$schema['config'] = array(
'description' => 'Configuration active store',
'fields' => array(
'type' => array(
'description' => 'The type of the config data.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'name' => array(
'description' => 'The name of the config data.',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'value' => array(
'description' => 'The value of the config data.',
'type' => 'blob',
'not null' => TRUE,
'size' => 'big',
'translatable' => TRUE,
),
),
'primary key' => array('type', 'name'),
'indexes' => array(
'name' => 'name',
),
);
$schema['date_format_type'] = array(
'description' => 'Stores configured date format types.',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment