summaryrefslogtreecommitdiff
path: root/modules/file/file.install
diff options
context:
space:
mode:
Diffstat (limited to 'modules/file/file.install')
-rw-r--r--modules/file/file.install4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/file/file.install b/modules/file/file.install
index f313249e2..c697f87af 100644
--- a/modules/file/file.install
+++ b/modules/file/file.install
@@ -13,7 +13,7 @@ function file_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,
@@ -37,7 +37,7 @@ function file_field_schema($field) {
),
'foreign keys' => array(
'fid' => array(
- 'table' => 'file',
+ 'table' => 'file_managed',
'columns' => array('fid' => 'fid'),
),
),