We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db8b0ff commit 531e6a2Copy full SHA for 531e6a2
example/fixtures/drf_example.json
@@ -26,8 +26,9 @@
26
"created_at": "2016-05-02T10:09:48.277",
27
"modified_at": "2016-05-02T10:09:48.277",
28
"name": "Alice",
29
+ "full_name": "Alice Test",
30
"email": "[email protected]",
- "type": null
31
+ "author_type": null
32
}
33
},
34
{
@@ -37,8 +38,9 @@
37
38
"created_at": "2016-05-02T10:09:57.133",
39
"modified_at": "2016-05-02T10:09:57.133",
40
"name": "Bob",
41
+ "full_name": "Bob Test",
42
43
44
45
46
example/settings/dev.py
@@ -6,6 +6,7 @@
6
MEDIA_ROOT = os.path.normcase(os.path.dirname(os.path.abspath(__file__)))
7
MEDIA_URL = "/media/"
8
USE_TZ = False
9
+DEFAULT_AUTO_FIELD = "django.db.models.AutoField"
10
11
DATABASE_ENGINE = "sqlite3"
12
0 commit comments