Index: trunk/grails-app/services/CreateDataService.groovy
===================================================================
--- trunk/grails-app/services/CreateDataService.groovy	(revision 690)
+++ trunk/grails-app/services/CreateDataService.groovy	(revision 694)
@@ -1214,8 +1214,22 @@
         def inventoryTypeInstance
 
-        inventoryTypeInstance = new InventoryType(name: "Consumable")
+        //InventoryType #1
+        inventoryTypeInstance = new InventoryType(name: "Consumable",
+                                                                                description: "Standard inventory items that are received as new.")
         saveAndTest(inventoryTypeInstance)
 
-        inventoryTypeInstance = new InventoryType(name: "Repairable")
+        //InventoryType #2
+        inventoryTypeInstance = new InventoryType(name: "Rotable",
+                                                                                description: "Repairable inventory items that are to be tracked as rotables.")
+        saveAndTest(inventoryTypeInstance)
+
+        //InventoryType #3
+        inventoryTypeInstance = new InventoryType(name: "Service",
+                                                                                description: "Provided services from contractors etc.")
+        saveAndTest(inventoryTypeInstance)
+
+        //InventoryType #4
+        inventoryTypeInstance = new InventoryType(name: "Tool",
+                                                                                description: "Tools that are held as inventory.")
         saveAndTest(inventoryTypeInstance)
     }
