diff options
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.install | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 7e48a8c7e..5e21c21ba 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -2722,6 +2722,14 @@ function system_update_6039() { return $ret; } +/** + * Add a weight column to the upload table. + */ +function system_update_6040() { + $ret = array(); + db_add_field($ret, 'upload', 'weight', array('type' => 'int', 'not null' => TRUE, 'default' => 0, 'size' => 'tiny')); + return $ret; +} /** * @} End of "defgroup updates-5.x-to-6.x" |