- 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,
|
'default' => 0,
|
||||||
),
|
),
|
||||||
'filename' => array(
|
'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',
|
'type' => 'varchar',
|
||||||
'length' => 255,
|
'length' => 255,
|
||||||
'not null' => TRUE,
|
'not null' => TRUE,
|
||||||
'default' => '',
|
'default' => '',
|
||||||
),
|
),
|
||||||
'uri' => array(
|
'uri' => array(
|
||||||
'description' => 'Path of the file relative to Drupal root.',
|
'description' => 'The URI to access the file (either local or remote).',
|
||||||
'type' => 'varchar',
|
'type' => 'varchar',
|
||||||
'length' => 255,
|
'length' => 255,
|
||||||
'not null' => TRUE,
|
'not null' => TRUE,
|
||||||
|
|
Loading…
Reference in New Issue