diff --git a/libraries.install b/libraries.install
index e98aeaa..cf80db1 100644
--- a/libraries.install
+++ b/libraries.install
@@ -13,3 +13,11 @@ function libraries_schema() {
   $schema['cache_libraries']['description'] = 'Cache table to store library information';
   return $schema;
 }
+
+/**
+ * Creates the 'cache_libraries' table.
+ */
+function libraries_update_7200() {
+  $specs = drupal_get_schema_unprocessed('system', 'cache');
+  db_create_table('cache_libraries', $specs);
+}
