This commit is contained in:
Marshal
2026-06-18 06:58:01 +00:00
parent 1d9e0f2108
commit 16bb0b5246
2 changed files with 10 additions and 7 deletions

View File

@@ -42,8 +42,10 @@ export class DemoFreightDataSeeder {
async run() {
await this.dataSource.transaction(async (manager) => {
await this.seedWagons(manager);
await this.seedApprovalRules(manager);
// Demo freight data (wagons + approval rules) disabled — keep only the
// 4 staff users.
// await this.seedWagons(manager);
// await this.seedApprovalRules(manager);
await this.seedStaffUsers(manager);
});
}