diff --git a/src/seeders/DatabaseSeeder.ts b/src/seeders/DatabaseSeeder.ts index 71479cc..3680756 100644 --- a/src/seeders/DatabaseSeeder.ts +++ b/src/seeders/DatabaseSeeder.ts @@ -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); } }