mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
25 lines
729 B
TypeScript
25 lines
729 B
TypeScript
|
import { MigrationInterface, QueryRunner } from 'typeorm';
|
||
|
import config from '../../../../config';
|
||
|
|
||
|
export class CreateCredentialsUserRole1660062385367 implements MigrationInterface {
|
||
|
name = 'CreateCredentialsUserRole1660062385367';
|
||
|
|
||
|
async up(queryRunner: QueryRunner): Promise<void> {
|
||
|
const tablePrefix = config.getEnv('database.tablePrefix');
|
||
|
|
||
|
await queryRunner.query(`
|
||
|
INSERT INTO ${tablePrefix}role (name, scope)
|
||
|
VALUES ('user', 'credential')
|
||
|
ON CONFLICT DO NOTHING;
|
||
|
`);
|
||
|
}
|
||
|
|
||
|
async down(queryRunner: QueryRunner): Promise<void> {
|
||
|
const tablePrefix = config.getEnv('database.tablePrefix');
|
||
|
|
||
|
await queryRunner.query(`
|
||
|
DELETE FROM ${tablePrefix}role WHERE name='user' AND scope='credential';
|
||
|
`);
|
||
|
}
|
||
|
}
|