parts/django/tests/regressiontests/multiple_database/fixtures/multidb.other.json
author Nishanth Amuluru <nishanth@fossee.in>
Sun, 09 Jan 2011 00:53:11 +0530
changeset 348 1eb24b1662cf
parent 307 c6bca38c1cbf
permissions -rw-r--r--
commenting does not need a verbose_name

[
    {
        "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"]
        }
    }
]