summaryrefslogtreecommitdiff
path: root/modules/poll/poll.install
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-28 13:52:30 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-01-28 13:52:30 +0000
commitf58a4c7206998030c604f86ea32e58f5f3986e55 (patch)
tree488a038d4a1600d85965b1cd9373beb72c543079 /modules/poll/poll.install
parentf29dafba553b7b1b77ef8cc16e6ee73209d903fa (diff)
downloadbrdo-f58a4c7206998030c604f86ea32e58f5f3986e55.tar.gz
brdo-f58a4c7206998030c604f86ea32e58f5f3986e55.tar.bz2
#563106 follow-up by int: Fix error in poll_update_7002.
Diffstat (limited to 'modules/poll/poll.install')
-rw-r--r--modules/poll/poll.install4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/poll/poll.install b/modules/poll/poll.install
index d80d3f735..d953f9713 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);
}