diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/system.api.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.api.php b/modules/system/system.api.php index 96cecdf19..58e8212c0 100644 --- a/modules/system/system.api.php +++ b/modules/system/system.api.php @@ -1602,7 +1602,7 @@ function hook_install() { function hook_update_N(&$sandbox = NULL) { // For most updates, the following is sufficient. $ret = array(); - db_add_field($ret, 'mytable1', 'newcol', array('type' => 'int', 'not null' => TRUE)); + db_add_field($ret, 'mytable1', 'newcol', array('type' => 'int', 'not null' => TRUE, 'description' => 'My new integer column.')); return $ret; // However, for more complex operations that may take a long time, |