-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinitial-data.yaml
65 lines (63 loc) · 1.33 KB
/
initial-data.yaml
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Species initial data
- model: animals.species
pk: 1
fields:
name: Cat
class_name: MAMMAL
description: Kitty cat
- model: animals.species
pk: 2
fields:
name: Bearded Dragon
class_name: REPTILE
description: Little beardie!
- model: animals.species
pk: 3
fields:
name: Chameleon
class_name: REPTILE
description: Chameleon
- model: animals.species
pk: 4
fields:
name: Parrot
class_name: BIRD
description: Parrot
- model: animals.species
pk: 5
fields:
name: Savannah Monitor
class_name: REPTILE
description: Savannah monitor
# Location initial data
- model: business.location
pk: 1
fields:
name: Sales Floor
description: Basically the whole first floor.
- model: business.location
pk: 2
fields:
name: Q Room
description: Quarantine room for sick and/or new animals.
# Base roles for people
- model: people.role
pk: 1
fields:
name: Volunteer
description: A person who volunteers for the rescue.
- model: people.role
pk: 2
fields:
name: Adopter
description: A person who adopts animals from the rescue.
- model: people.role
pk: 3
fields:
name: Donor
description: A person who makes donations to the rescue.
- model: people.role
pk: 4
fields:
name: Foster
description: A person who fosters animals for the rescue.