forked from ojassingh/crbn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathseed.ts
82 lines (76 loc) · 1.94 KB
/
seed.ts
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import { PrismaClient } from '@prisma/client'
const prisma = new PrismaClient()
async function main() {
// await prisma.user.createMany(
// {
// data: [{
// "name": "Hailey Spurden",
// "email": "[email protected]",
// }, {
// "name": "Andromache Cheston",
// "email": "[email protected]",
// }, {
// "name": "Vladamir Taaffe",
// "email": "[email protected]",
// }, {
// "name": "Allison Lambird",
// "email": "[email protected]",
// }, {
// "name": "Arvie Rudge",
// "email": "[email protected]",
// }],
// })
await prisma.store.createMany(
{
data: [{
"name": "Rippin-Howell",
"about": "Aonw medkivq rkh ybjd ibs. Iyu dsdvw ll df ve.",
"ownerId": 1,
}, {
"name": "Reynolds and Sons",
"about": "Mixz mdfuuiy jif cobo ivi. Hjt axbss ab rz vc.",
"ownerId": 2,
}, {
"name": "Bartoletti, Fahey and McGlynn",
"about": "Uppm ktzpkdl noc scsw kxh. Kuo bzrpj fx mg ht.",
"ownerId": 3,
}, {
"name": "Waelchi, Koelpin and Hermann",
"about": "Levd yoljvsg brf vqmn rfz. Sld yrytn km sn zd.",
"ownerId": 4,
}, {
"name": "Schimmel and Sons",
"about": "Ossn fwwikvd cvo oxem bsc. Omc dnoqu bp wf yb.",
"ownerId": 5,
}],
})
await prisma.product.createMany(
{
data:
[{
"name": "Hare's Ear Mustard",
"price": 32.68,
}, {
"name": "Tricyrtis",
"price": 20.39,
}, {
"name": "Roundfruit Blyxa",
"price": 42.51,
}, {
"name": "Texan Gumweed",
"price": 6.41,
}, {
"name": "Cinnecord",
"price": 7.87,
}],
})
}
main()
.then(async () => {
await prisma.$disconnect()
})
.catch(async (e) => {
console.error(e)
await prisma.$disconnect()
process.exit(1)
})