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

orm: order by id by default

This commit is contained in:
Alexander Medvednikov
2020-06-22 17:13:57 +02:00
parent e3f00ff28b
commit a4b159a80f
2 changed files with 6 additions and 2 deletions

View File

@@ -402,3 +402,7 @@ fn strip(s string) string {
// strip('\nabc\r\n') => 'abc'
return s.trim('\r\n')
}
pub fn not_found() Result {
return Result{}
}