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

Also fixed those comments in hook_schema, fixed a typo

parent d8729ea0
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
......@@ -699,14 +699,14 @@ function system_schema() {
'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 extension).',
'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',
......@@ -1699,7 +1699,7 @@ 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 the file extendion.).',
'description' => 'The identifier for the configuration entry, such as module.example (the name of the file, minus the file extension).',
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment