1
0
mirror of https://github.com/django/django.git synced 2024-11-18 15:34:16 +00:00
django/tests/fixtures_regress/fixtures/feature.json
Ramiro Morales 862e1ff234 Fixed #22421 -- Regression in fixtures loading.
Loading fixtures were failing since the refactoring in 244e2b71f5 for
inheritance setups where the chain contains abstract models and the
root ancestor contains a M2M relation.

Thanks Stanislas Guerra for the report.

Refs #20946.
2014-05-17 17:36:45 -03:00

18 lines
233 B
JSON

[
{
"fields": {
"channels": [],
"title": "Title of this feature article"
},
"model": "fixtures_regress.article",
"pk": 1
},
{
"fields": {
"channels": []
},
"model": "fixtures_regress.feature",
"pk": 1
}
]