This commit is contained in:
2020-02-24 18:34:40 +00:00
parent 07740c3316
commit f5871e125f
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
# Sort and filter FORM HELP Placeholder
This is a placeholder page for sections that are not written yet
NOTE: Make sure to mention that filters are CASE SENSITIVE
Postgres does case sensitive searches and that's what we're going to stick with.
v7 seemed to allow case insensitive with firebird at least but that's not happening now

View File

@@ -10,7 +10,7 @@ namespace AyaNova.Models
public uint ConcurrencyToken { get; set; }
[Required]
public long UserId { get; set; }
public long UserId { get; set; }//only relevant if non-public for fetching either in picklist or single (public true OR userid matches)
[Required, MaxLength(255)]
public string Name { get; set; }//max 255 characters ascii set
[Required]