user_schema()
Implements hook_schema().
File
core/modules/user/user.install, line 11 Install, update and uninstall functions for the user module.
Code
function user_schema() {
$schema['users_data'] = array(
'description' => 'Stores module data as key/value pairs per user.',
'fields' => array(
'uid' => array(
'description' => 'Primary key: {users}.uid for user.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,