summaryrefslogtreecommitdiff
path: root/tests/multiple_database/fixtures/multidb.default.json
blob: 379b18a803ad6c4a898f5bda8495d634a9aed036 (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": "Marty Alchin"
        }
    },
    {
        "pk": 2,
        "model": "multiple_database.person",
        "fields": {
            "name": "George Vilches"
        }
    },
    {
        "pk": 2,
        "model": "multiple_database.book",
        "fields": {
            "title": "Pro Django",
            "published": "2008-12-16",
            "authors": [["Marty Alchin"]],
            "editor": ["George Vilches"]
        }
    }
]