Index: modules/trigger/trigger.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/trigger/trigger.install,v
retrieving revision 1.11
diff -u -r1.11 trigger.install
--- modules/trigger/trigger.install	1 Jun 2009 22:07:10 -0000	1.11
+++ modules/trigger/trigger.install	4 Aug 2009 07:09:59 -0000
@@ -7,25 +7,6 @@
  */
 
 /**
- * Implement hook_install().
- */
-function trigger_install() {
-  // Create tables.
-  drupal_install_schema('trigger');
-
-  // Do initial synchronization of actions in code and the database.
-  actions_synchronize();
-}
-
-/**
- * Implement hook_uninstall().
- */
-function trigger_uninstall() {
-  // Remove tables.
-  drupal_uninstall_schema('trigger');
-}
-
-/**
  * Implement hook_schema().
  */
 function trigger_schema() {
@@ -68,4 +49,21 @@
   return $schema;
 }
 
+/**
+ * Implement hook_install().
+ */
+function trigger_install() {
+  // Create tables.
+  drupal_install_schema('trigger');
+
+  // Do initial synchronization of actions in code and the database.
+  actions_synchronize();
+}
 
+/**
+ * Implement hook_uninstall().
+ */
+function trigger_uninstall() {
+  // Remove tables.
+  drupal_uninstall_schema('trigger');
+}
