Merged in bugfix/HOR-4012 (pull request #6162)
HOR-4012 Approved-by: Julio Cesar Laura Avendaño <contact@julio-laura.com>
This commit is contained in:
committed by
Julio Cesar Laura Avendaño
commit
1ec480af57
@@ -69,7 +69,7 @@ class PluginsRegistryMapBuilder
|
||||
|
||||
$tMap->addColumn('PLUGIN_NAMESPACE', 'PluginNamespace', 'string', CreoleTypes::VARCHAR, true, 100);
|
||||
|
||||
$tMap->addColumn('PLUGIN_DESCRIPTION', 'PluginDescription', 'string', CreoleTypes::VARCHAR, false, 200);
|
||||
$tMap->addColumn('PLUGIN_DESCRIPTION', 'PluginDescription', 'string', CreoleTypes::LONGVARCHAR, false, null);
|
||||
|
||||
$tMap->addColumn('PLUGIN_CLASS_NAME', 'PluginClassName', 'string', CreoleTypes::VARCHAR, true, 100);
|
||||
|
||||
|
||||
@@ -43,7 +43,7 @@ abstract class BasePluginsRegistry extends BaseObject implements Persistent
|
||||
* The value for the plugin_description field.
|
||||
* @var string
|
||||
*/
|
||||
protected $plugin_description = '';
|
||||
protected $plugin_description;
|
||||
|
||||
/**
|
||||
* The value for the plugin_class_name field.
|
||||
@@ -508,7 +508,7 @@ abstract class BasePluginsRegistry extends BaseObject implements Persistent
|
||||
$v = (string) $v;
|
||||
}
|
||||
|
||||
if ($this->plugin_description !== $v || $v === '') {
|
||||
if ($this->plugin_description !== $v) {
|
||||
$this->plugin_description = $v;
|
||||
$this->modifiedColumns[] = PluginsRegistryPeer::PLUGIN_DESCRIPTION;
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -3157,7 +3157,7 @@ CREATE TABLE `PLUGINS_REGISTRY`
|
||||
(
|
||||
`PR_UID` VARCHAR(32) default '' NOT NULL,
|
||||
`PLUGIN_NAMESPACE` VARCHAR(100) NOT NULL,
|
||||
`PLUGIN_DESCRIPTION` VARCHAR(200) default '',
|
||||
`PLUGIN_DESCRIPTION` MEDIUMTEXT,
|
||||
`PLUGIN_CLASS_NAME` VARCHAR(100) NOT NULL,
|
||||
`PLUGIN_FRIENDLY_NAME` VARCHAR(150) default '',
|
||||
`PLUGIN_FILE` VARCHAR(250) NOT NULL,
|
||||
|
||||
Reference in New Issue
Block a user