fix: seed script checks for any existing user, not just admin@wraith.local

Previously the seed only checked for admin@wraith.local by email,
so it would create a duplicate if the admin had changed their email.
Now skips seeding entirely if any user exists.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Vantz Stockwell 2026-03-14 01:48:19 -04:00
parent 2216ee79aa
commit 4ccf138744

View File

@ -4,9 +4,9 @@ const bcrypt = require('bcrypt');
const prisma = new PrismaClient();
async function main() {
const existing = await prisma.user.findUnique({ where: { email: 'admin@wraith.local' } });
if (existing) {
console.log('Seed: admin user already exists, skipping');
const userCount = await prisma.user.count();
if (userCount > 0) {
console.log('Seed: users already exist, skipping');
return;
}
const hash = await bcrypt.hash('wraith', 10);