diff --git a/modules/poll/poll.install b/modules/poll/poll.install
index d80d3f735684c48675cf55bc7e9d5d32a4a82b7c..d953f9713aa12d48c80a70638f161aa9c95fa126 100644
--- a/modules/poll/poll.install
+++ b/modules/poll/poll.install
@@ -147,7 +147,7 @@ function poll_update_7001() {
 }
 
 /**
- * Add timestamp field to {poll_votes}.
+ * Add timestamp field to {poll_vote}.
  */
 function poll_update_7002() {
   $field = array(
@@ -155,5 +155,5 @@ function poll_update_7002() {
     'not null' => TRUE,
     'default' => 0,
   );
-  db_add_field('poll_votes', 'timestamp', $field);
+  db_add_field('poll_vote', 'timestamp', $field);
 }