Database schema, seeds and scripts for seed, setup & teardown

This commit is contained in:
2022-12-11 18:15:47 +01:00
parent 5f42163dbe
commit 099c3a59ac
22 changed files with 1203 additions and 0 deletions

View File

@@ -0,0 +1,67 @@
[
{
"model": "customer",
"pk": 1,
"fields": {
"customer_no": "7CB9A6B8-A526-4836-BF4E-67E1075F8B83",
"email": "kevin.midboe@gmail.com",
"first_name": "kevin",
"last_name": "midbøe",
"street_address": "Schleppegrells gate 18",
"zip_code": "0556",
"city": "Oslo"
}
},
{
"model": "customer",
"pk": 2,
"fields": {
"customer_no": "FFF49A98-0A2F-437D-9069-9664ADB2FFFE",
"email": "Maia.Neteland@gmail.com",
"first_name": "Maia",
"last_name": "Neteland",
"street_address": "Mosekollen 14",
"zip_code": "0752",
"city": "Oslo"
}
},
{
"model": "customer",
"pk": 3,
"fields": {
"customer_no": "DFC94AB1-9BB6-4ECF-8747-3E12751892AB",
"email": "Aksel.Engeset@gmail.com",
"first_name": "Aksel",
"last_name": "Engeset",
"street_address": "Christian Bloms gate 210",
"zip_code": "3041",
"city": "DRAMMEN"
}
},
{
"model": "customer",
"pk": 4,
"fields": {
"customer_no": "E235456D-C884-4828-BB0F-5065056BD57A",
"email": "Thomas.Langemyr@gmail.com",
"first_name": "Thomas",
"last_name": "Langemyr",
"street_address": "Clausenbakken 208",
"zip_code": "1369",
"city": "Stabekk"
}
},
{
"model": "customer",
"pk": 5,
"fields": {
"customer_no": "3C1C1952-87E3-46A8-8B22-383B2F566E26",
"email": "Frida.Nilsen@gmail.com",
"first_name": "Frida",
"last_name": "Nilsen",
"street_address": "Jansbråteveien 195",
"zip_code": "1730",
"city": "Ise"
}
}
]