mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-08-20 02:27:14 +02:00
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
10 lines
350 B
TypeScript
10 lines
350 B
TypeScript
import type { IrreversibleMigration, MigrationContext } from '@db/types';
|
|
|
|
export class RemoveSkipOwnerSetup1681134145997 implements IrreversibleMigration {
|
|
async up({ queryRunner, tablePrefix }: MigrationContext) {
|
|
await queryRunner.query(
|
|
`DELETE FROM "${tablePrefix}settings" WHERE key = 'userManagement.skipInstanceOwnerSetup';`,
|
|
);
|
|
}
|
|
}
|