n8n/packages/cli/src/databases/migrations/postgresdb/1677501636754-CreateVariables.ts
कारतोफ्फेलस्क्रिप्ट™ 82fe6383ef
refactor(core): Delete boilerplate code across migrations (no-changelog) (#5254)
2023-05-05 11:28:59 +02:00

20 lines
594 B
TypeScript

import type { MigrationContext, ReversibleMigration } from '@db/types';
export class CreateVariables1677501636754 implements ReversibleMigration {
async up({ queryRunner, tablePrefix }: MigrationContext) {
await queryRunner.query(`
CREATE TABLE ${tablePrefix}variables (
id serial4 NOT NULL PRIMARY KEY,
"key" varchar(50) NOT NULL,
"type" varchar(50) NOT NULL DEFAULT 'string',
value varchar(255) NULL,
UNIQUE ("key")
);
`);
}
async down({ queryRunner, tablePrefix }: MigrationContext) {
await queryRunner.query(`DROP TABLE ${tablePrefix}variables;`);
}
}