Changed GroupName column length to 100 as part of validation rules.

This commit is contained in:
Rich 2013-11-25 04:43:27 +00:00
parent 2d612fcd91
commit 3dcf918262

View File

@ -408,7 +408,7 @@ namespace VEPROMS.CSLA.Library
Csla.Validation.CommonRules.StringRequired, "GroupName");
ValidationRules.AddRule(
Csla.Validation.CommonRules.StringMaxLength,
new Csla.Validation.CommonRules.MaxLengthRuleArgs("GroupName", 50));
new Csla.Validation.CommonRules.MaxLengthRuleArgs("GroupName", 100));
ValidationRules.AddRule(
Csla.Validation.CommonRules.StringMaxLength,
new Csla.Validation.CommonRules.MaxLengthRuleArgs("Config", 1073741823));