'description' => t('Per-user comment display mode (threaded vs. flat), used by the {comment} module.'),
),
'sort' => array(
'type' => 'int',
'not null' => FALSE,
'default' => 0,
'size' => 'tiny',
'description' => t('Per-user comment sort order (newest vs. oldest first), used by the {comment} module.'),
),
'threshold' => array(
'type' => 'int',
'not null' => FALSE,
'default' => 0,
'size' => 'tiny',
'description' => t('Previously used by the {comment} module for per-user preferences; no longer used.'),
),
'theme' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
'description' => t("User's default theme."),
),
'signature' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
'description' => t("User's signature."),
),
'created' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
'description' => t('Timestamp for when user was created.'),
),
'access' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
'description' => t('Timestamp for previous time user accessed the site.'),
),
'login' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
'description' => t("Timestamp for user's last login."),
),
'status' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
'size' => 'tiny',
'description' => t('Whether the user is active(1) or blocked(0).'),
),
'timezone' => array(
'type' => 'varchar',
'length' => 8,
'not null' => FALSE,
'description' => t("User's timezone."),
),
'language' => array(
'type' => 'varchar',
'length' => 12,
'not null' => TRUE,
'default' => '',
'description' => t("User's default language."),
),
'picture' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
'description' => t("Path to the user's uploaded picture."),
),
'init' => array(
'type' => 'varchar',
'length' => 64,
'not null' => FALSE,
'default' => '',
'description' => t('Email address used for initial account creation.'),
),
'data' => array(
'type' => 'text',
'not null' => FALSE,
'size' => 'big',
'description' => t('A serialized array of name value pairs that are related to the user. Any form values posted during user edit are stored and are loaded into the $user object during user_load(). Use of this field is discouraged and it will likely disappear in a future version of Drupal.'),