diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-11-29 11:49:34 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-11-29 11:49:34 +0000 |
commit | aafd4733ba094572a9098bef23b0df26f821f167 (patch) | |
tree | a27a7870448f21a8ce486cc4d05301144d39a6e9 /modules/system/system.install | |
parent | 79792eeb6fccfdbe91affb228e3e6259328d7c7a (diff) | |
download | brdo-aafd4733ba094572a9098bef23b0df26f821f167.tar.gz brdo-aafd4733ba094572a9098bef23b0df26f821f167.tar.bz2 |
#193105 by dmitrig01, quicksketch: add weights and drag and drop ordering support to uploads
Diffstat (limited to 'modules/system/system.install')
-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" |