#563106 follow-up by int: Fix error in poll_update_7002.

merge-requests/26/head
Angie Byron 2010-01-28 13:52:30 +00:00
parent f29dafba55
commit f58a4c7206
1 changed files with 2 additions and 2 deletions

View File

@ -147,7 +147,7 @@ function poll_update_7001() {
} }
/** /**
* Add timestamp field to {poll_votes}. * Add timestamp field to {poll_vote}.
*/ */
function poll_update_7002() { function poll_update_7002() {
$field = array( $field = array(
@ -155,5 +155,5 @@ function poll_update_7002() {
'not null' => TRUE, 'not null' => TRUE,
'default' => 0, 'default' => 0,
); );
db_add_field('poll_votes', 'timestamp', $field); db_add_field('poll_vote', 'timestamp', $field);
} }