Skip to content
Snippets Groups Projects
Commit d8729ea0 authored by Greg Dunlap's avatar Greg Dunlap
Browse files

Fixed comments in update hook that creates config table

parent 5981cc85
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
......@@ -1699,14 +1699,14 @@ function system_update_8003() {
'description' => 'Default active store for the configuration system.',
'fields' => array(
'name' => array(
'description' => 'The identifier for the configuration entry, such as module.example (the name of the file, minus .json.php).',
'description' => 'The identifier for the configuration entry, such as module.example (the name of the file, minus the file extendion.).',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
),
'data' => array(
'description' => 'The raw JSON data for this configuration entry.',
'description' => 'The raw data for this configuration entry.',
'type' => 'blob',
'not null' => TRUE,
'size' => 'big',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment