Files
remix-heroku/prisma/seed.ts
Tommy Parnell 6e18c2c7ef init
2022-04-07 10:18:09 -04:00

9 lines
218 B
TypeScript

import { PrismaClient } from "@prisma/client";
const db = new PrismaClient();
async function seed() {
return db.note.create({ data: { name: "Note from the databae", content: " I am a new note :) " }});
}
seed();