Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/multiple_database/fixtures/multidb.other.json
blob: c64f4902015e75e26e4bf9d60d5b17a3964b8289 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[
    {
        "pk": 1,
        "model": "multiple_database.person",
        "fields": {
            "name": "Mark Pilgrim"
        }
    },
    {
        "pk": 2,
        "model": "multiple_database.person",
        "fields": {
            "name": "Chris Mills"
        }
    },
    {
        "pk": 2,
        "model": "multiple_database.book",
        "fields": {
            "title": "Dive into Python",
            "published": "2009-5-4",
            "authors": [["Mark Pilgrim"]],
            "editor": ["Chris Mills"]
        }
    }
]