Files
bigcapital/packages/server/src/modules/CLI/commands/SystemSeedLatest.command.ts
Ahmed Bouhuolia 3bd0e89146 feat: migration commands (#828)
* feat: migration commands

* Update packages/server/src/modules/CLI/commands/TenantsMigrateRollback.command.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update packages/server/src/modules/CLI/commands/TenantsMigrateLatest.command.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update packages/server/src/modules/CLI/commands/TenantsList.command.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update packages/server/src/modules/CLI/commands/SystemMigrateRollback.command.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update packages/server/src/modules/CLI/commands/TenantsMigrateLatest.command.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-10-22 21:58:02 +02:00

13 lines
381 B
TypeScript

import { Command, CommandRunner } from 'nest-commander';
@Command({
name: 'system:seed:latest',
description: 'Seed system database with the latest data',
})
export class SystemSeedLatestCommand extends CommandRunner {
async run(): Promise<void> {
console.log('System seeding with latest data - No operation performed');
// TODO: Implement system seeding logic
}
}