diff --git a/modules/trigger/trigger.install b/modules/trigger/trigger.install
index 95fb4fb2e3fe58cb84cecc093ce4ef1afc6b10e1..d174326158d82c8cc7d57538225d6f2979107260 100644
--- a/modules/trigger/trigger.install
+++ b/modules/trigger/trigger.install
@@ -6,14 +6,6 @@
  * Install, update and uninstall functions for the trigger module.
  */
 
-/**
- * Implement hook_install().
- */
-function trigger_install() {
-  // Do initial synchronization of actions in code and the database.
-  actions_synchronize();
-}
-
 /**
  * Implement hook_schema().
  */
@@ -50,6 +42,14 @@ function trigger_schema() {
   return $schema;
 }
 
+/**
+ * Implement hook_install().
+ */
+function trigger_install() {
+  // Do initial synchronization of actions in code and the database.
+  actions_synchronize();
+}
+
 /**
  * Adds operation names to the hook names and drops the "op" field.
  */