mirror of
https://github.com/django/django.git
synced 2025-11-07 07:15:35 +00:00
Fixed #14068 -- Corrected error handling in loaddata when an allow_syncdb method is defined on the router. Thanks to Xavier Ordoquy for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13612 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
18
tests/regressiontests/multiple_database/fixtures/pets.json
Normal file
18
tests/regressiontests/multiple_database/fixtures/pets.json
Normal file
@@ -0,0 +1,18 @@
|
||||
[
|
||||
{
|
||||
"pk": 1,
|
||||
"model": "multiple_database.pet",
|
||||
"fields": {
|
||||
"name": "Mr Bigglesworth",
|
||||
"owner": 1
|
||||
}
|
||||
},
|
||||
{
|
||||
"pk": 2,
|
||||
"model": "multiple_database.pet",
|
||||
"fields": {
|
||||
"name": "Spot",
|
||||
"owner": 2
|
||||
}
|
||||
}
|
||||
]
|
||||
Reference in New Issue
Block a user