v2 / vlib / v / checker / tests / orm_fkey_has_pkey.out
7 lines · 7 sloc · 266 bytes · 757929392e0e7a75fc1272116460981e589737d5
Raw
1vlib/v/checker/tests/orm_fkey_has_pkey.vv:5:2: error: ORM: a struct that has a field that holds an array must have a primary key
2 3 | struct Person {
3 4 | id int
4 5 | child []Child @[fkey: 'person_id']
5 | ~~~~~~~~~~~~~
6 6 | }
7 7 |
8