Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
orm_multiple_pkeys.out
7
lines
·
7
sloc
·
235 bytes
·
757929392e0e7a75fc1272116460981e589737d5
Raw
1
vlib/v/checker/tests/orm_multiple_pkeys.vv:5:2: error: ORM: a struct can only have one primary key
2
3 | struct Person {
3
4 | id int @[primary]
4
5 | name string @[primary]
5
| ~~~~~~~~~~~
6
6 | }
7
7 |
8