2007-10-05 16:07:22 +00:00
<?php
// $Id$
/**
* Implementation of hook_schema().
*/
function user_schema() {
$schema['authmap'] = array(
2007-10-10 11:39:35 +00:00
'description' => t('Stores distributed authentication mapping.'),
2007-10-05 16:07:22 +00:00
'fields' => array(
2007-10-10 11:39:35 +00:00
'aid' => array(
'description' => t('Primary Key: Unique authmap ID.'),
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'uid' => array(
'type' => 'int',
'not null' => TRUE,
'default' => 0,
2007-11-04 14:33:07 +00:00
'description' => t("User's {users}.uid."),
2007-10-10 11:39:35 +00:00
),
'authname' => array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
'description' => t('Unique authentication name.'),
),
'module' => array(
'type' => 'varchar',
'length' => 128,
'not null' => TRUE,
'default' => '',
'description' => t('Module which is controlling the authentication.'),
),
2007-10-05 16:07:22 +00:00
),
2008-03-15 12:31:29 +00:00
'unique keys' => array(
'authname' => array('authname'),
),
2007-10-05 16:07:22 +00:00
'primary key' => array('aid'),
);
2008-05-07 19:34:24 +00:00
$schema['role_permission'] = array(
'description' => t('Stores the permissions assigned to user roles.'),
2007-10-05 16:07:22 +00:00
'fields' => array(
2007-10-10 11:39:35 +00:00
'rid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
2008-05-07 19:34:24 +00:00
'description' => t('Foreign Key: {role}.rid.'),
2007-10-10 11:39:35 +00:00
),
2008-05-07 19:34:24 +00:00
'permission' => array(
'type' => 'varchar',
'length' => 64,
2007-10-10 11:39:35 +00:00
'not null' => TRUE,
2008-05-07 19:34:24 +00:00
'default' => '',
'description' => t('A single permission granted to the role identified by rid.'),
2007-10-10 11:39:35 +00:00
),
2007-10-05 16:07:22 +00:00
),
2008-05-07 19:34:24 +00:00
'primary key' => array('rid', 'permission'),
2008-03-15 12:31:29 +00:00
'indexes' => array(
2008-05-07 19:34:24 +00:00
'permission' => array('permission'),
2008-03-15 12:31:29 +00:00
),
2007-10-05 16:07:22 +00:00
);
$schema['role'] = array(
2007-10-10 11:39:35 +00:00
'description' => t('Stores user roles.'),
2007-10-05 16:07:22 +00:00
'fields' => array(
2007-10-10 11:39:35 +00:00
'rid' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
2008-05-07 19:34:24 +00:00
'description' => t('Primary Key: Unique role ID.'),
2007-10-10 11:39:35 +00:00
),
'name' => array(
'type' => 'varchar',
'length' => 64,
'not null' => TRUE,
'default' => '',
'description' => t('Unique role name.'),
),
2007-10-05 16:07:22 +00:00
),
2008-03-15 12:31:29 +00:00
'unique keys' => array(
'name' => array('name'),
),
2007-10-05 16:07:22 +00:00
'primary key' => array('rid'),
);
$schema['users'] = array(
2007-10-10 11:39:35 +00:00
'description' => t('Stores user data.'),
2007-10-05 16:07:22 +00:00
'fields' => array(
2007-10-10 11:39:35 +00:00
'uid' => array(
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
'description' => t('Primary Key: Unique user ID.'),
),
'name' => array(
'type' => 'varchar',
'length' => 60,
'not null' => TRUE,
'default' => '',
'description' => t('Unique user name.'),
),
'pass' => array(
'type' => 'varchar',
2008-03-31 20:50:05 +00:00
'length' => 128,
2007-10-10 11:39:35 +00:00
'not null' => TRUE,
'default' => '',
2008-03-31 20:50:05 +00:00
'description' => t("User's password (hashed)."),
2007-10-10 11:39:35 +00:00
),
'mail' => array(
'type' => 'varchar',
'length' => 64,
'not null' => FALSE,
'default' => '',
'description' => t("User's email address."),
),
'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',
2008-02-18 16:53:37 +00:00
'serialize' => TRUE,
2007-10-10 11:39:35 +00:00
'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.'),
),
2007-10-05 16:07:22 +00:00
),
'indexes' => array(
2007-10-10 11:39:35 +00:00
'access' => array('access'),
2008-01-08 07:46:41 +00:00
'created' => array('created'),
'mail' => array('mail'),
2007-10-05 16:07:22 +00:00
),
2007-12-18 12:59:22 +00:00
'unique keys' => array(
'name' => array('name'),
),
2007-10-05 16:07:22 +00:00
'primary key' => array('uid'),
);
$schema['users_roles'] = array(
2007-10-10 11:39:35 +00:00
'description' => t('Maps users to roles.'),
2007-10-05 16:07:22 +00:00
'fields' => array(
2007-10-10 11:39:35 +00:00
'uid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
2007-11-04 14:33:07 +00:00
'description' => t('Primary Key: {users}.uid for user.'),
2007-10-10 11:39:35 +00:00
),
'rid' => array(
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
'description' => t('Primary Key: {role}.rid for role.'),
),
2007-10-05 16:07:22 +00:00
),
'primary key' => array('uid', 'rid'),
2007-12-18 12:59:22 +00:00
'indexes' => array(
'rid' => array('rid'),
),
2007-10-05 16:07:22 +00:00
);
return $schema;
}
2008-03-31 20:50:05 +00:00
/**
* @defgroup user-updates-6.x-to-7.x User updates from 6.x to 7.x
* @{
*/
/**
* Increase the length of the password field to accommodate better hashes.
*
* Also re-hashes all current passwords to improve security. This may be a
* lengthy process, and is performed batch-wise.
*/
function user_update_7000(&$sandbox) {
$ret = array('#finished' => 0);
// Lower than DRUPAL_HASH_COUNT to make the update run at a reasonable speed.
$hash_count_log2 = 11;
// Multi-part update.
if (!isset($sandbox['user_from'])) {
db_change_field($ret, 'users', 'pass', 'pass', array('type' => 'varchar', 'length' => 128, 'not null' => TRUE, 'default' => ''));
$sandbox['user_from'] = 0;
$sandbox['user_count'] = db_result(db_query("SELECT COUNT(uid) FROM {users}"));
}
else {
2008-09-20 20:22:25 +00:00
require_once DRUPAL_ROOT . '/' . variable_get('password_inc', 'includes/password.inc');
2008-03-31 20:50:05 +00:00
// Hash again all current hashed passwords.
$has_rows = FALSE;
// Update this many per page load.
$count = 1000;
$result = db_query_range("SELECT uid, pass FROM {users} WHERE uid > 0 ORDER BY uid", $sandbox['user_from'], $count);
while ($account = db_fetch_array($result)) {
$has_rows = TRUE;
$new_hash = user_hash_password($account['pass'], $hash_count_log2);
if ($new_hash) {
// Indicate an updated password.
2008-04-14 17:48:46 +00:00
$new_hash = 'U' . $new_hash;
2008-03-31 20:50:05 +00:00
db_query("UPDATE {users} SET pass = '%s' WHERE uid = %d", $new_hash, $account['uid']);
}
}
$ret['#finished'] = $sandbox['user_from']/$sandbox['user_count'];
$sandbox['user_from'] += $count;
if (!$has_rows) {
$ret['#finished'] = 1;
2008-04-14 17:48:46 +00:00
$ret[] = array('success' => TRUE, 'query' => "UPDATE {users} SET pass = 'U' . user_hash_password(pass) WHERE uid > 0");
2008-03-31 20:50:05 +00:00
}
}
return $ret;
}
2008-04-16 11:26:29 +00:00
/**
* Remove the 'threshold', 'mode' and 'sort' columns from the {user} table.
*
* These fields were previously used to store per-user comment settings.
*/
function user_update_7001() {
$ret = array();
db_drop_field($ret, 'users', 'threshold');
db_drop_field($ret, 'users', 'mode');
db_drop_field($ret, 'users', 'sort');
return $ret;
}
2008-03-31 20:50:05 +00:00
/**
* @} End of "defgroup user-updates-6.x-to-7.x"
* The next series of updates should start at 8000.
*/