parts/django/tests/regressiontests/fixtures_regress/fixtures/forward_ref_lookup.json
changeset 69 c6bca38c1cbf
equal deleted inserted replaced
68:5ff1fc726848 69:c6bca38c1cbf
       
     1 [
       
     2     {
       
     3         "pk": "4",
       
     4         "model": "fixtures_regress.person",
       
     5         "fields": {
       
     6             "name": "Neal Stephenson"
       
     7         }
       
     8     },
       
     9     {
       
    10         "pk": "2",
       
    11         "model": "fixtures_regress.store",
       
    12         "fields": {
       
    13             "name": "Amazon"
       
    14         }
       
    15     },
       
    16     {
       
    17         "pk": "3",
       
    18         "model": "fixtures_regress.store",
       
    19         "fields": {
       
    20             "name": "Borders"
       
    21         }
       
    22     },
       
    23     {
       
    24         "pk": 1,
       
    25         "model": "fixtures_regress.book",
       
    26         "fields": {
       
    27             "name": "Cryptonomicon",
       
    28             "author": ["Neal Stephenson"],
       
    29             "stores": [["Amazon"], ["Borders"]]
       
    30         }
       
    31     }
       
    32 ]