* 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>
13 lines
381 B
TypeScript
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
|
|
}
|
|
}
|