mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-10 12:27:31 -08:00
fc6484ba4d
* Fix mysql migration issue on execution entity * Fix one down migration Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
30 lines
953 B
TypeScript
30 lines
953 B
TypeScript
import { MigrationInterface, QueryRunner } from 'typeorm';
|
|
import config from '../../../../config';
|
|
|
|
export class AddAPIKeyColumn1652905585850 implements MigrationInterface {
|
|
name = 'AddAPIKeyColumn1652905585850';
|
|
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
const tablePrefix = config.getEnv('database.tablePrefix');
|
|
|
|
await queryRunner.query(
|
|
'ALTER TABLE `' + tablePrefix + 'user` ADD COLUMN `apiKey` VARCHAR(255)',
|
|
);
|
|
await queryRunner.query(
|
|
'CREATE UNIQUE INDEX `UQ_' +
|
|
tablePrefix +
|
|
'ie0zomxves9w3p774drfrkxtj5` ON `' +
|
|
tablePrefix +
|
|
'user` (`apiKey`)',
|
|
);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
const tablePrefix = config.get('database.tablePrefix');
|
|
await queryRunner.query(
|
|
`DROP INDEX \`UQ_${tablePrefix}ie0zomxves9w3p774drfrkxtj5\` ON \`${tablePrefix}user\``,
|
|
);
|
|
await queryRunner.query('ALTER TABLE `' + tablePrefix + 'user` DROP COLUMN `apiKey`');
|
|
}
|
|
}
|