diff options
Diffstat (limited to 'modules/system/system.install')
-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')); } |