summaryrefslogtreecommitdiff
path: root/modules/profile/profile.install
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-06-01 22:07:10 +0000
committerDries Buytaert <dries@buytaert.net>2009-06-01 22:07:10 +0000
commit88c9a015c16bcfc6312f539c13a320aa40d91aa9 (patch)
tree41a4defd81dac7be430769844f9b9548035338b0 /modules/profile/profile.install
parent43b201df91bb883a9e3f95fb3244ee8db0f11891 (diff)
downloadbrdo-88c9a015c16bcfc6312f539c13a320aa40d91aa9.tar.gz
brdo-88c9a015c16bcfc6312f539c13a320aa40d91aa9.tar.bz2
- Patch #111011 by Josh Waihi: adding foreign key specifications.
Diffstat (limited to 'modules/profile/profile.install')
-rw-r--r--modules/profile/profile.install4
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/profile/profile.install b/modules/profile/profile.install
index fe453bbe0..b07a6b8b3 100644
--- a/modules/profile/profile.install
+++ b/modules/profile/profile.install
@@ -149,6 +149,10 @@ function profile_schema() {
'indexes' => array(
'fid' => array('fid'),
),
+ 'foreign keys' => array(
+ 'fid' => array('profile_field' => 'fid'),
+ 'uid' => array('users' => 'uid'),
+ ),
);
return $schema;