diff options
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 02ec53c80..10bda38f1 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -3429,6 +3429,17 @@ function system_update_6024() { } /** + * Increase the maximum length of node titles from 128 to 255. + */ +function system_update_6025() { + $ret = array(); + db_update_field($ret, 'node', 'title'); + db_update_field($ret, 'node_revisions', 'title'); + return $ret; +} + + +/** * @} End of "defgroup updates-5.x-to-6.x" * The next series of updates should start at 7000. */ |