import { MigrationInterface, QueryRunner } from "typeorm"; export class PluginConfigs1660404619978 implements MigrationInterface { name = 'PluginConfigs1660404619978' public async up(queryRunner: QueryRunner): Promise { await queryRunner.query(` CREATE TABLE "plugin_config" ( "key" character varying NOT NULL, "value" text, CONSTRAINT "PK_aa929ece56c59233b85a16f62ef" PRIMARY KEY ("key") ) `); } public async down(queryRunner: QueryRunner): Promise { await queryRunner.query(` DROP TABLE "plugin_config" `); } }