1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-11-29 00:54:01 +02:00

lowered the max field id and name length limit to 100

This commit is contained in:
Gani Georgiev
2024-11-11 16:18:24 +02:00
parent 0af8f3cc66
commit db57572a54
3 changed files with 7 additions and 7 deletions

View File

@@ -91,7 +91,7 @@ func testDefaultFieldIdValidation(t *testing.T, fieldType string) {
"invalid length",
func() core.Field {
f := core.Fields[fieldType]()
f.SetId(strings.Repeat("a", 256))
f.SetId(strings.Repeat("a", 101))
return f
},
true,
@@ -100,7 +100,7 @@ func testDefaultFieldIdValidation(t *testing.T, fieldType string) {
"valid length",
func() core.Field {
f := core.Fields[fieldType]()
f.SetId(strings.Repeat("a", 255))
f.SetId(strings.Repeat("a", 100))
return f
},
false,
@@ -142,7 +142,7 @@ func testDefaultFieldNameValidation(t *testing.T, fieldType string) {
"invalid length",
func() core.Field {
f := core.Fields[fieldType]()
f.SetName(strings.Repeat("a", 256))
f.SetName(strings.Repeat("a", 101))
return f
},
true,
@@ -151,7 +151,7 @@ func testDefaultFieldNameValidation(t *testing.T, fieldType string) {
"valid length",
func() core.Field {
f := core.Fields[fieldType]()
f.SetName(strings.Repeat("a", 255))
f.SetName(strings.Repeat("a", 100))
return f
},
false,