/tests/regressiontests/m2m_through_regress/fixtures/m2m_through.json
JSON | 34 lines | 34 code | 0 blank | 0 comment | 0 complexity | 9bb335f7b12470eb415be1a3fa05dc96 MD5 | raw file
Possible License(s): BSD-3-Clause
1[ 2 { 3 "pk": "1", 4 "model": "m2m_through_regress.person", 5 "fields": { 6 "name": "Guido" 7 } 8 }, 9 { 10 "pk": "1", 11 "model": "auth.user", 12 "fields": { 13 "username": "Guido", 14 "email": "bdfl@python.org", 15 "password": "abcde" 16 } 17 }, 18 { 19 "pk": "1", 20 "model": "m2m_through_regress.group", 21 "fields": { 22 "name": "Python Core Group" 23 } 24 }, 25 { 26 "pk": "1", 27 "model": "m2m_through_regress.usermembership", 28 "fields": { 29 "user": "1", 30 "group": "1", 31 "price": "100" 32 } 33 } 34]