diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-10-18 12:02:40 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-10-18 12:02:40 +0000 |
commit | 509915ac3bbab8b096f9bb19f5fe24e448880338 (patch) | |
tree | ffe30e53f34007f1ba3cf25ffcaf0a38585b9774 /modules | |
parent | 58348d677eb49106e73af0649629044a06197ca7 (diff) | |
download | brdo-509915ac3bbab8b096f9bb19f5fe24e448880338.tar.gz brdo-509915ac3bbab8b096f9bb19f5fe24e448880338.tar.bz2 |
- Fixed update number.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/system/system.install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 38753a045..a3eb618d2 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -2874,7 +2874,7 @@ function system_update_7044() { /** * Add expiration field to the {flood} table. */ -function system_update_7044() { +function system_update_7045() { db_add_field('flood', 'expiration', array('description' => 'Expiration timestamp. Expired events are purged on cron run.', 'type' => 'int', 'not null' => TRUE, 'default' => 0)); db_add_index('flood', 'purge', array('expiration')); } |