summaryrefslogtreecommitdiff
path: root/modules/update/update.install
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-10-05 14:43:26 +0000
committerDries Buytaert <dries@buytaert.net>2007-10-05 14:43:26 +0000
commit39706e3c51cf206ca6669bbb7a090d2f7d394591 (patch)
tree9286ccd302d526ea8a1de799081356fcc77c28a3 /modules/update/update.install
parentd568128b9f7a0181b31e9baa087022e892352ea7 (diff)
downloadbrdo-39706e3c51cf206ca6669bbb7a090d2f7d394591.tar.gz
brdo-39706e3c51cf206ca6669bbb7a090d2f7d394591.tar.bz2
- Patch #150245 by webchick, bjaspan, ralf, Arancaytar et al: move the .schema files into .install files to prevent mistakes.
Diffstat (limited to 'modules/update/update.install')
-rw-r--r--modules/update/update.install9
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/update/update.install b/modules/update/update.install
index 8c974dbe2..b910fe79a 100644
--- a/modules/update/update.install
+++ b/modules/update/update.install
@@ -28,3 +28,12 @@ function update_uninstall() {
}
menu_rebuild();
}
+
+/**
+ * Implementation of hook_schema().
+ */
+function update_schema() {
+ $schema['cache_update'] = drupal_get_schema_unprocessed('system', 'cache');
+ return $schema;
+}
+