You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The usage URL does not exist in the UsageFactory.class.php class. This causes the field to be created with a length of 1 instead of 255 characters when defining a field
Field
'website' => [
'type' => 'string',
'usage' => 'url',
'description' => 'Organisation main official website URL, if any.',
'visible' => ['type', '<>', 'I']
],
Result DB
website: varchar(1)
Result import DB
Since the website field is created incorrectly, the data defined in the import JSON files cannot be imported.
The text was updated successfully, but these errors were encountered:
Describe the bug
The usage URL does not exist in the UsageFactory.class.php class. This causes the field to be created with a length of 1 instead of 255 characters when defining a field
Field
'website' => [
'type' => 'string',
'usage' => 'url',
'description' => 'Organisation main official website URL, if any.',
'visible' => ['type', '<>', 'I']
],
Result DB
website: varchar(1)
Result import DB
Since the website field is created incorrectly, the data defined in the import JSON files cannot be imported.
The text was updated successfully, but these errors were encountered: