remove notif seeder

This commit is contained in:
2025-12-22 20:16:26 +03:30
parent 1802b05e74
commit 66e5345654
+3 -3
View File
@@ -15,7 +15,7 @@ import { CouponsSeeder } from './coupons.seeder';
import { NotificationPreferencesSeeder } from './notification-preferences.seeder';
import { UserWalletsSeeder } from './user-wallets.seeder';
import { InventorySeeder } from './inventory.seeder';
import { NotificationsSeeder } from './notifications.seeder';
// import { NotificationsSeeder } from './notifications.seeder';
export class DatabaseSeeder extends Seeder {
async run(em: EntityManager) {
@@ -77,7 +77,7 @@ export class DatabaseSeeder extends Seeder {
await userWalletsSeeder.run(em);
// 15. Create Notifications for admins and users for all restaurants
const notificationsSeeder = new NotificationsSeeder();
await notificationsSeeder.run(em);
// const notificationsSeeder = new NotificationsSeeder();
// await notificationsSeeder.run(em);
}
}