Skip to content
Snippets Groups Projects
Commit ec125c0a authored by Angie Byron's avatar Angie Byron
Browse files

Issue #1138040 by barbi: Fixed hook_field_shema() doc has incorrect field type...

Issue #1138040 by barbi: Fixed hook_field_shema() doc has incorrect field type in format in example.
parent 1dcc93b2
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
...@@ -256,8 +256,8 @@ function hook_field_schema($field) { ...@@ -256,8 +256,8 @@ function hook_field_schema($field) {
} }
$columns += array( $columns += array(
'format' => array( 'format' => array(
'type' => 'int', 'type' => 'varchar',
'unsigned' => TRUE, 'length' => 255,
'not null' => FALSE, 'not null' => FALSE,
), ),
); );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment