Сделан баланс, проверка чеков, начата система создания серверов
This commit is contained in:
9
ospabhost/backend/prisma/delete_windows_os.ts
Normal file
9
ospabhost/backend/prisma/delete_windows_os.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { PrismaClient } from '@prisma/client';
|
||||
const prisma = new PrismaClient();
|
||||
|
||||
async function main() {
|
||||
await prisma.operatingSystem.deleteMany({ where: { type: 'windows' } });
|
||||
console.log('Все Windows Server ОС удалены!');
|
||||
}
|
||||
|
||||
main().finally(() => prisma.$disconnect());
|
||||
Reference in New Issue
Block a user