Initial commit - ERP System

This commit is contained in:
root
2026-05-20 18:58:23 +00:00
commit e174936997
2697 changed files with 1628427 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
const { PrismaClient } = require('@prisma/client');
const prisma = new PrismaClient();
prisma.user.count().then(count => {
console.log('Total Users:', count);
return prisma.customer.count();
}).then(count => {
console.log('Total Customers:', count);
}).finally(() => process.exit(0));