diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-11-21 09:24:41 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-11-21 09:24:41 +0000 |
commit | 0222fa7003a2a07fceacd2323b709d3af55deccd (patch) | |
tree | e8b161e51de03c8bd8e5995b039935b94bbb73fc /modules/image/image.install | |
parent | 17c6a9122bd79d1e7b04388cb540dd33195948f2 (diff) | |
download | brdo-0222fa7003a2a07fceacd2323b709d3af55deccd.tar.gz brdo-0222fa7003a2a07fceacd2323b709d3af55deccd.tar.bz2 |
#970002 by EclipseGc: Fixed file field foreign key table is incorrect
Diffstat (limited to 'modules/image/image.install')
-rw-r--r-- | modules/image/image.install | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/modules/image/image.install b/modules/image/image.install index 3ebf6eef5..ea3eee5ac 100644 --- a/modules/image/image.install +++ b/modules/image/image.install @@ -114,7 +114,7 @@ function image_field_schema($field) { return array( 'columns' => array( 'fid' => array( - 'description' => 'The {files}.fid being referenced in this field.', + 'description' => 'The {file_managed}.fid being referenced in this field.', 'type' => 'int', 'not null' => FALSE, 'unsigned' => TRUE, @@ -135,6 +135,12 @@ function image_field_schema($field) { 'indexes' => array( 'fid' => array('fid'), ), + 'foreign keys' => array( + 'fid' => array( + 'table' => 'file_managed', + 'columns' => array('fid' => 'fid'), + ), + ), ); } |