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
$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.',