Skip to content
Snippets Groups Projects
Commit 7ecfaf4c authored by catch's avatar catch
Browse files

Issue #2886740 by kiamlaluno: user_schema() reports uid as primary key for the...

Issue #2886740 by kiamlaluno: user_schema() reports uid as primary key for the user_data table when it's just part of the primary key
parent 29155fdb
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
...@@ -13,7 +13,7 @@ function user_schema() { ...@@ -13,7 +13,7 @@ function user_schema() {
'description' => 'Stores module data as key/value pairs per user.', 'description' => 'Stores module data as key/value pairs per user.',
'fields' => [ 'fields' => [
'uid' => [ 'uid' => [
'description' => 'Primary key: {users}.uid for user.', 'description' => 'The {users}.uid this record affects.',
'type' => 'int', 'type' => 'int',
'unsigned' => TRUE, 'unsigned' => TRUE,
'not null' => TRUE, '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