1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

examples/vweb_fullstack: fix wrong db ORM-fields (#17907)

This commit is contained in:
l-33ter
2023-04-08 16:18:48 +02:00
committed by GitHub
parent 48d42287a9
commit 756e5d931e
3 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
module main
struct AuthRequestDto {
username string [required]
password string [required]
username string [nonull]
password string [nonull]
}