Browse Source

feat(db): migrate seed.js to typescript

pull/4248/head
KenTandrian 7 months ago
parent
commit
792b8074db
  1. 3
      prisma/seed.ts

3
prisma/seed.js → prisma/seed.ts

@ -1,4 +1,5 @@
const { PrismaClient } = require('@prisma/client');
import { PrismaClient } from '@prisma/client';
const prisma = new PrismaClient();
async function main() {
Loading…
Cancel
Save