- Patch #902354 by pwolanin: Fixed Schema description is wrong for uri field in {file_managed()} table.
parent
e115800d04
commit
77b1624b39
|
@ -770,14 +770,14 @@ function system_schema() {
|
|||
'default' => 0,
|
||||
),
|
||||
'filename' => array(
|
||||
'description' => 'Name of the file with no path components. This may differ from the basename of the filepath if the file is renamed to avoid overwriting an existing file.',
|
||||
'description' => 'Name of the file with no path components. This may differ from the basename of the URI if the file is renamed to avoid overwriting an existing file.',
|
||||
'type' => 'varchar',
|
||||
'length' => 255,
|
||||
'not null' => TRUE,
|
||||
'default' => '',
|
||||
),
|
||||
'uri' => array(
|
||||
'description' => 'Path of the file relative to Drupal root.',
|
||||
'description' => 'The URI to access the file (either local or remote).',
|
||||
'type' => 'varchar',
|
||||
'length' => 255,
|
||||
'not null' => TRUE,
|
||||
|
|
Loading…
Reference in New Issue