mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 09:36:44 +00:00
58 lines
1.6 KiB
TypeScript
58 lines
1.6 KiB
TypeScript
import { Command, flags } from '@oclif/command';
|
|
import type { DataSourceOptions as ConnectionOptions } from 'typeorm';
|
|
import { DataSource as Connection } from 'typeorm';
|
|
import { Container } from 'typedi';
|
|
import { Logger } from '@/Logger';
|
|
import { getConnectionOptions } from '@/Db';
|
|
import type { Migration } from '@db/types';
|
|
import { wrapMigration } from '@db/utils/migrationHelpers';
|
|
import config from '@/config';
|
|
|
|
export class DbRevertMigrationCommand extends Command {
|
|
static description = 'Revert last database migration';
|
|
|
|
static examples = ['$ n8n db:revert'];
|
|
|
|
static flags = {
|
|
help: flags.help({ char: 'h' }),
|
|
};
|
|
|
|
protected logger = Container.get(Logger);
|
|
|
|
private connection: Connection;
|
|
|
|
async init() {
|
|
this.parse(DbRevertMigrationCommand);
|
|
}
|
|
|
|
async run() {
|
|
const dbType = config.getEnv('database.type');
|
|
const connectionOptions: ConnectionOptions = {
|
|
...getConnectionOptions(dbType),
|
|
subscribers: [],
|
|
synchronize: false,
|
|
migrationsRun: false,
|
|
dropSchema: false,
|
|
logging: ['query', 'error', 'schema'],
|
|
};
|
|
|
|
(connectionOptions.migrations as Migration[]).forEach(wrapMigration);
|
|
|
|
this.connection = new Connection(connectionOptions);
|
|
await this.connection.initialize();
|
|
await this.connection.undoLastMigration();
|
|
await this.connection.destroy();
|
|
}
|
|
|
|
async catch(error: Error) {
|
|
this.logger.error('Error reverting last migration. See log messages for details.');
|
|
this.logger.error(error.message);
|
|
}
|
|
|
|
protected async finally(error: Error | undefined) {
|
|
if (this.connection?.isInitialized) await this.connection.destroy();
|
|
|
|
this.exit(error ? 1 : 0);
|
|
}
|
|
}
|