removed max length because field changed to mediumtext

This commit is contained in:
Tim Chamberlain
2025-07-23 10:23:39 -05:00
parent fca30f8522
commit a64e6d3346

View File

@ -52,10 +52,11 @@ public class ScheduledJobParameter extends QRecordEntity
@QField(maxLength = 250, valueTooLongBehavior = ValueTooLongBehavior.ERROR, isRequired = true) @QField(maxLength = 250, valueTooLongBehavior = ValueTooLongBehavior.ERROR, isRequired = true)
private String key; private String key;
@QField(maxLength = 250, valueTooLongBehavior = ValueTooLongBehavior.ERROR) @QField()
private String value; private String value;
/******************************************************************************* /*******************************************************************************
** Constructor ** Constructor
** **
@ -77,7 +78,6 @@ public class ScheduledJobParameter extends QRecordEntity
/******************************************************************************* /*******************************************************************************
** Getter for id ** Getter for id
*******************************************************************************/ *******************************************************************************/
@ -262,5 +262,4 @@ public class ScheduledJobParameter extends QRecordEntity
return (this); return (this);
} }
} }