Index: modules/poll/poll.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/poll/poll.install,v
retrieving revision 1.24
diff -u -r1.24 poll.install
--- modules/poll/poll.install	1 Jun 2009 22:07:09 -0000	1.24
+++ modules/poll/poll.install	4 Aug 2009 07:01:38 -0000
@@ -7,22 +7,6 @@
  */
 
 /**
- * Implement hook_install().
- */
-function poll_install() {
-  // Create tables.
-  drupal_install_schema('poll');
-}
-
-/**
- * Implement hook_uninstall().
- */
-function poll_uninstall() {
-  // Remove tables.
-  drupal_uninstall_schema('poll');
-}
-
-/**
  * Implement hook_schema().
  */
 function poll_schema() {
@@ -154,6 +138,27 @@
 }
 
 /**
+ * Implement hook_install().
+ */
+function poll_install() {
+  // Create tables.
+  drupal_install_schema('poll');
+}
+
+/**
+ * Implement hook_uninstall().
+ */
+function poll_uninstall() {
+  // Remove tables.
+  drupal_uninstall_schema('poll');
+}
+
+/**
+ * @defgroup updates-6.x-to-7.x Poll updates from 6.x to 7.x
+ * @{
+ */
+
+/**
  * Rename {poll_choices} table to {poll_choice} and {poll_votes} to {poll_vote}.
  */
 function poll_update_7001() {
@@ -176,3 +181,7 @@
   db_add_field($ret, 'poll_votes', 'timestamp', $field);
   return $ret;
 }
+
+/**
+ * @} End of "defgroup updates-6.x-to-7.x"
+ */
