summaryrefslogtreecommitdiff
path: root/includes/update.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/update.inc')
-rw-r--r--includes/update.inc3
1 files changed, 3 insertions, 0 deletions
diff --git a/includes/update.inc b/includes/update.inc
index ff7fc696c..51504a811 100644
--- a/includes/update.inc
+++ b/includes/update.inc
@@ -637,6 +637,9 @@ function update_fix_d7_requirements() {
db_change_field('languages', 'javascript', 'javascript', array('type' => 'varchar', 'length' => 64, 'not null' => TRUE, 'default' => ''));
}
+ // Rename action description to label.
+ db_change_field('actions', 'description', 'label', array('type' => 'varchar', 'length' => 255, 'not null' => TRUE, 'default' => '0'));
+
variable_set('update_d7_requirements', TRUE);
}