updated scaffold apis to use random id during the collections initialization and made index columns check on the UI case insensitive

This commit is contained in:
Gani Georgiev
2025-08-26 22:02:00 +03:00
parent 5e67ec1c1c
commit cc902f2df8
32 changed files with 50 additions and 46 deletions
+1 -1
View File
@@ -1062,7 +1062,7 @@ func (c *Collection) fieldIndexName(field string) string {
} else if c.Name != "" {
name += c.Name
} else {
name += security.PseudorandomString(10)
name += security.PseudorandomStringWithAlphabet(10, DefaultIdAlphabet)
}
if len(name) > 64 {