the prisma deploy only seeds after the initial dep...
# prisma-whats-new
p
the prisma deploy only seeds after the initial deploy, not after - anyone? 😅
p
curious about this question too.
p
It seems like it's not possible for now. Im working on unit tests, so I ended up having a unit test that seeds (for now)
Copy code
const db = new Prisma({
		endpoint: process.env.PRISMA_ENDPOINT,
		secret: process.env.PRISMA_SECRET,
		debug: true,
	})

	await db.mutation.create...
pretty doable actually 🙂