From 36ee95717e12b7a075cf2b8742d26b48dbc09208 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Nowacki?= Date: Mon, 24 Jun 2019 13:54:38 +0200 Subject: [PATCH] Update validation.rst --- user_guide_src/source/libraries/validation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_guide_src/source/libraries/validation.rst b/user_guide_src/source/libraries/validation.rst index 87f72c24623b..789d8aae26b7 100644 --- a/user_guide_src/source/libraries/validation.rst +++ b/user_guide_src/source/libraries/validation.rst @@ -673,7 +673,7 @@ is_natural_no_zero No Fails if field contains anything other than is_unique Yes Checks if this field value exists in the database. Optionally set a is_unique[table.field,ignore_field,ignore_value] column and value to ignore, useful when updating records to ignore itself. less_than Yes Fails if field is greater than or equal to the parameter value or not numeric. less_than[8] -less_then_equal_to Yes Fails if field is greater than the parameter value or not numeric. less_than_equal_to[8] +less_than_equal_to Yes Fails if field is greater than the parameter value or not numeric. less_than_equal_to[8] matches Yes The value must match the value of the field in the parameter. matches[field] max_length Yes Fails if field is longer than the parameter value. max_length[8] min_length Yes Fails if field is shorter than the parameter value. min_length[3]