Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
orm_fkey_attribute.out
7
lines
·
7
sloc
·
252 bytes
·
0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1
vlib/v/checker/tests/orm_fkey_attribute.vv:11:12: error: ORM: the `fkey` attribute must have an argument
2
9 | id int @[primary; sql: serial]
3
10 | name string
4
11 | user User @[fkey]
5
| ~~~~~~~
6
12 | }
7
13 |
8