-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfixtures.json
50 lines (50 loc) · 1.49 KB
/
fixtures.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[
{
"model": "auth.user",
"pk": 1,
"fields": {
"password": "pbkdf2_sha256$600000$YbCSauVYFZDkLHHhjk9CY4$92Nrx45i+V8nleIiXOQ+IV+hSymDqVigjM3JzU1UmYg=",
"last_login": null,
"is_superuser": true,
"username": "admin",
"first_name": "",
"last_name": "",
"email": "[email protected]",
"is_staff": true,
"is_active": true
}
},
{
"model": "todolist.taskmodel",
"pk": "3d96174d-349f-413d-9f94-5d2309fdbd56",
"fields": {
"title": "Tarefa 1",
"description": "Descrição da Tarefa 1",
"completed": false,
"created_at": "2023-05-20T08:00:00Z",
"updated_at": "2023-05-20T08:00:00Z"
}
},
{
"model": "todolist.taskmodel",
"pk": "7c5d2a0d-397f-4d77-ba61-180a1b6e9a8f",
"fields": {
"title": "Tarefa 2",
"description": "Descrição da Tarefa 2",
"completed": true,
"created_at": "2023-05-20T09:00:00Z",
"updated_at": "2023-05-20T09:00:00Z"
}
},
{
"model": "todolist.taskmodel",
"pk": "a0b0b5a0-0b7a-4b0a-8b0b-5a0b0b7a4b0a",
"fields": {
"title": "Tarefa 3",
"description": "Descrição da Tarefa 3",
"completed": false,
"created_at": "2023-05-20T10:00:00Z",
"updated_at": "2023-05-20T10:00:00Z"
}
}
]