summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/dblog/dblog.install31
-rw-r--r--modules/locale/locale.install1
-rw-r--r--modules/statistics/statistics.install15
-rw-r--r--modules/system/system.install92
4 files changed, 134 insertions, 5 deletions
diff --git a/modules/dblog/dblog.install b/modules/dblog/dblog.install
index cb417c0fb..2a0456927 100644
--- a/modules/dblog/dblog.install
+++ b/modules/dblog/dblog.install
@@ -93,11 +93,33 @@ function dblog_schema() {
}
/**
- * Allow NULL values for links and longer referers.
+ * @defgroup updates-6.x-extra Extra database logging updates for 6.x
+ * @{
+ */
+
+/**
+ * Allow longer referrers.
+ */
+function dblog_update_6000() {
+ db_change_field('watchdog', 'referer', 'referer', array('type' => 'text', 'not null' => FALSE));
+}
+
+/**
+ * @} End of "defgroup updates-6.x-extra"
+ * The next series of updates should start at 7000.
+ */
+
+
+/**
+ * @defgroup updates-6.x-to-7.x database logging updates from 6.x to 7.x
+ * @{
+ */
+
+/**
+ * Allow NULL values for links.
*/
function dblog_update_7001() {
db_change_field('watchdog', 'link', 'link', array('type' => 'varchar', 'length' => 255, 'not null' => FALSE, 'default' => ''));
- db_change_field('watchdog', 'referer', 'referer', array('type' => 'text', 'not null' => FALSE));
}
/**
@@ -113,3 +135,8 @@ function dblog_update_7002() {
function dblog_update_7003() {
db_change_field('watchdog', 'type', 'type', array('type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => ''));
}
+
+/**
+ * @} End of "defgroup updates-6.x-to-7.x"
+ * The next series of updates should start at 8000.
+ */
diff --git a/modules/locale/locale.install b/modules/locale/locale.install
index 45f0020fa..bd656b52d 100644
--- a/modules/locale/locale.install
+++ b/modules/locale/locale.install
@@ -39,6 +39,7 @@ function locale_update_7000() {
db_add_field('locales_source', 'context', array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => ''));
db_drop_index('locales_source', 'source');
db_add_index('locales_source', 'source_context', array(array('source', 30), 'context'));
+ db_change_field('locales_source', 'location', 'location', array('type' => 'text', 'size' => 'big', 'not null' => FALSE));
}
/**
diff --git a/modules/statistics/statistics.install b/modules/statistics/statistics.install
index 5fd499707..c681532f9 100644
--- a/modules/statistics/statistics.install
+++ b/modules/statistics/statistics.install
@@ -134,18 +134,29 @@ function statistics_schema() {
}
/**
- * @defgroup updates-6.x-to-7.x System updates from 6.x to 7.x
+ * @defgroup updates-6.x-extra Extra statistics updates for 6.x
* @{
*/
/**
* Allow longer referrers.
*/
-function statistics_update_7000() {
+function statistics_update_6000() {
db_change_field('accesslog', 'url', 'url', array('type' => 'text', 'not null' => FALSE));
}
/**
+ * @} End of "defgroup updates-6.x-extra"
+ * The next series of updates should start at 7000.
+ */
+
+
+/**
+ * @defgroup updates-6.x-to-7.x statistics updates from 6.x to 7.x
+ * @{
+ */
+
+/**
* @} End of "defgroup updates-6.x-to-7.x"
* The next series of updates should start at 8000.
*/
diff --git a/modules/system/system.install b/modules/system/system.install
index 66901ef4b..97f8e6724 100644
--- a/modules/system/system.install
+++ b/modules/system/system.install
@@ -1629,9 +1629,99 @@ function system_schema() {
// Updates for core.
function system_update_last_removed() {
- return 6049;
+ return 6047;
}
+/**
+ * @defgroup updates-6.x-extra Extra system updates for 6.x
+ * @{
+ */
+
+/**
+* Increase the size of the 'load_functions' and 'to_arg_functions' fields in table 'menu_router'.
+*/
+function system_update_6048() {
+ $ret = array();
+ db_change_field($ret, 'menu_router', 'load_functions', 'load_functions', array('type' => 'text', 'not null' => TRUE,));
+ db_change_field($ret, 'menu_router', 'to_arg_functions', 'to_arg_functions', array('type' => 'text', 'not null' => TRUE,));
+
+ return $ret;
+}
+
+/**
+ * Replace src index on the {url_alias} table with src, language.
+ */
+function system_update_6049() {
+ $ret = array();
+ db_drop_index($ret, 'url_alias', 'src');
+ db_add_index($ret, 'url_alias', 'src_language', array('src', 'language'));
+ return $ret;
+}
+
+/**
+ * Clear any menu router blobs stored in the cache table.
+ */
+function system_update_6050() {
+ $ret = array();
+ cache_clear_all('router:', 'cache_menu', TRUE);
+ return $ret;
+}
+
+/**
+ * Create a signature_format column.
+ */
+function system_update_6051() {
+ $ret = array();
+
+ if (!db_column_exists('users', 'signature_format')) {
+
+ // Set future input formats to FILTER_FORMAT_DEFAULT to ensure a safe default
+ // when incompatible modules insert into the users table. An actual format
+ // will be assigned when users save their signature.
+
+ $schema = array(
+ 'type' => 'int',
+ 'size' => 'small',
+ 'not null' => TRUE,
+ 'default' => FILTER_FORMAT_DEFAULT,
+ 'description' => 'The {filter_formats}.format of the signature.',
+ );
+
+ db_add_field($ret, 'users', 'signature_format', $schema);
+
+ // Set the format of existing signatures to the current default input format.
+ if ($current_default_filter = variable_get('filter_default_format', 0)) {
+ $ret[] = update_sql("UPDATE {users} SET signature_format = ". $current_default_filter);
+ }
+
+ drupal_set_message("User signatures no longer inherit comment input formats. Each user's signature now has its own associated format that can be selected on the user's account page. Existing signatures have been set to your site's default input format.");
+ }
+
+ return $ret;
+}
+
+/**
+ * Add a missing index on the {menu_router} table.
+ */
+function system_update_6052() {
+ $ret = array();
+ db_add_index($ret, 'menu_router', 'tab_root_weight_title', array(array('tab_root', 64), 'weight', 'title'));
+ return $ret;
+}
+
+/**
+ * Add a {system} index on type and name.
+ */
+function system_update_6053() {
+ $ret = array();
+ db_add_index($ret, 'system', 'type_name', array(array('type', 12), 'name'));
+ return $ret;
+}
+
+/**
+ * @} End of "defgroup updates-6.x-extra"
+ * The next series of updates should start at 7000.
+ */
/**
* @defgroup updates-6.x-to-7.x System updates from 6.x to 7.x