1
0
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:
Russell Keith-Magee
2010-08-20 13:57:24 +00:00
parent e0387f7abe
commit c2e3ba3ba0
3 changed files with 64 additions and 9 deletions

View 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
}
}
]