This commit is contained in:
Roly Rudy Gutierrez Pinto
2017-05-22 11:58:06 -04:00
parent d49d973483
commit 94a6e15013
4 changed files with 4 additions and 4 deletions

View File

@@ -4775,7 +4775,7 @@
<parameter name="Create_options" value="" />
</vendor>
<column name="WEE_UID" type="VARCHAR" size="32" required="true" primaryKey="true" />
<column name="WEE_TITLE" type="LONGVARCHAR" required="true"/>
<column name="WEE_TITLE" type="LONGVARCHAR" required="false"/>
<column name="WEE_DESCRIPTION" type="LONGVARCHAR" required="true"/>
<column name="PRJ_UID" type="VARCHAR" size="32" required="true" />
<column name="EVN_UID" type="VARCHAR" size="32" required="true" />

View File

@@ -2719,7 +2719,7 @@ DROP TABLE IF EXISTS `WEB_ENTRY_EVENT`;
CREATE TABLE `WEB_ENTRY_EVENT`
(
`WEE_UID` VARCHAR(32) NOT NULL,
`WEE_TITLE` MEDIUMTEXT NOT NULL,
`WEE_TITLE` MEDIUMTEXT,
`WEE_DESCRIPTION` MEDIUMTEXT NOT NULL,
`PRJ_UID` VARCHAR(32) NOT NULL,
`EVN_UID` VARCHAR(32) NOT NULL,

View File

@@ -9,7 +9,7 @@ class WebEntry
"TAS_UID" => array("type" => "string", "required" => true, "empty" => false, "defaultValues" => array(), "fieldNameAux" => "taskUid"),
"DYN_UID" => array("type" => "string", "required" => true, "empty" => false, "defaultValues" => array(), "fieldNameAux" => "dynaFormUid"),
"USR_UID" => array("type" => "string", "required" => false, "empty" => false, "defaultValues" => array(), "fieldNameAux" => "userUid"),
"WE_TITLE" => array("type" => "string", "required" => true, "empty" => false, "defaultValues" => array(), "fieldNameAux" => "webEntryTitle"),
"WE_TITLE" => array("type" => "string", "required" => false, "empty" => true, "defaultValues" => array(), "fieldNameAux" => "webEntryTitle"),
"WE_DESCRIPTION" => array("type" => "string", "required" => false, "empty" => true, "defaultValues" => array(), "fieldNameAux" => "webEntryDescription"),
"WE_METHOD" => array("type" => "string", "required" => true, "empty" => false, "defaultValues" => array("WS", "HTML"), "fieldNameAux" => "webEntryMethod"),
"WE_INPUT_DOCUMENT_ACCESS" => array("type" => "int", "required" => true, "empty" => false, "defaultValues" => array(0, 1), "fieldNameAux" => "webEntryInputDocumentAccess")

View File

@@ -11,7 +11,7 @@ class WebEntryEvent
"DYN_UID" => array("type" => "string", "required" => true, "empty" => false, "defaultValues" => array(), "fieldNameAux" => "dynaFormUid"),
"USR_UID" => array("type" => "string", "required" => true, "empty" => false, "defaultValues" => array(), "fieldNameAux" => "userUid"),
"WEE_TITLE" => array("type" => "string", "required" => true, "empty" => false, "defaultValues" => array(), "fieldNameAux" => "webEntryEventTitle"),
"WEE_TITLE" => array("type" => "string", "required" => false, "empty" => true, "defaultValues" => array(), "fieldNameAux" => "webEntryEventTitle"),
"WEE_DESCRIPTION" => array("type" => "string", "required" => false, "empty" => true, "defaultValues" => array(), "fieldNameAux" => "webEntryEventDescription"),
"WEE_STATUS" => array("type" => "string", "required" => false, "empty" => false, "defaultValues" => array("ENABLED", "DISABLED"), "fieldNameAux" => "webEntryEventStatus")
);